Berker Peksag
f43bc98c48
Issue #12982 : Thanks to PEP 488, Python no longer creates .pyo files
10 years ago
Zachary Ware
72e483aac4
Fix half-finished sentence.
Reported by Linda Pescatore on docs@.
10 years ago
Zachary Ware
87ec85f420
Correct typo in Windows docs.
Found by Jack Copper on docs@
10 years ago
Berker Peksag
6803f35acc
Issue #27393 : Fix escaping of C:\ too
10 years ago
Berker Peksag
9c1e9d453c
Issue #27393 : Fix escaping of venv activate commands on Windows
Patch by Manuel Kaufmann.
10 years ago
Paul Moore
835416cf7c
Issue #27064 : The py.exe launcher now defaults to Python 3.
The Windows launcher ``py.exe`` no longer prefers an installed
Python 2 version over Python 3 by default when used interactively.
10 years ago
Senthil Kumaran
c9bfc13aa9
issue27045 - Use backslash in windows path to script file.
10 years ago
Serhiy Storchaka
6dff0205b7
Issue #26736 : Used HTTPS for external links in the documentation if possible.
10 years ago
Victor Stinner
f5c4b99034
PyMem_Malloc() now uses the fast pymalloc allocator
Issue #26249 : PyMem_Malloc() allocator family now uses the pymalloc allocator
rather than system malloc(). Applications calling PyMem_Malloc() without
holding the GIL can now crash: use PYTHONMALLOC=debug environment variable to
validate the usage of memory allocators in your application.
10 years ago
Serhiy Storchaka
de886d9233
Issue #25910 : Fixed more links in the docs.
10 years ago
Victor Stinner
d1700a9360
Fix typo in doc: avoid the french "& cie" :-)
10 years ago
Victor Stinner
9b46a57302
Doc: fix typos, patch written by Stefan Behnel
10 years ago
Victor Stinner
c2fc56836f
Enhance documentation on malloc debug hooks
Issue #26564 , #26516 , #26563 .
10 years ago
Victor Stinner
34be807ca4
Add PYTHONMALLOC env var
Issue #26516 :
* Add PYTHONMALLOC environment variable to set the Python memory
allocators and/or install debug hooks.
* PyMem_SetupDebugHooks() can now also be used on Python compiled in release
mode.
* The PYTHONMALLOCSTATS environment variable can now also be used on Python
compiled in release mode. It now has no effect if set to an empty string.
* In debug mode, debug hooks are now also installed on Python memory allocators
when Python is configured without pymalloc.
10 years ago
Georg Brandl
5d94134040
Closes #25910 : fix dead and permanently redirected links in the docs. Thanks to SilentGhost for the patch.
10 years ago
Georg Brandl
06871ef2b3
Fix version.
10 years ago
Georg Brandl
8c16cb9f65
Closes #26435 : fix syntax in directives. Thanks to Jakub Stasiak.
10 years ago
Martin Panter
c04fb56e36
Issue #26304 : Change "allows to <verb>" to "allows <verb>ing" or similar
The original form is incorrect grammar and feels awkward, even though the
meaning is clear.
10 years ago
Berker Peksag
ef410770a7
Update "Creating Virtual Environments" link in venv documentation
10 years ago
Berker Peksag
a9744aebc8
Update output of venv -h
* Update description of the --system-site-packages option
* Show --copies option in the usage
10 years ago
Berker Peksag
547f66f599
Issue #26034 : Sync documentation of --clear with its behavior
Most of the docs has already been updated in c3c188a0325a.
10 years ago
Steve Dower
e248f6875b
Issue #25089 : Adds short documentation section for modifying an install.
10 years ago
Brett Cannon
85622e4bc9
Issue #25874 : Clarify platform support in the "Using Python on Windows" doc.
Thanks to Chris Wilcox for the initial patch.
10 years ago
Martin Panter
7dda421bff
Issue #14285 : Do not catch exceptions initializing any ancestor package
The previous fix only handled the case of the parent package of __main__
failing to initialize.
Also make the "Error while finding spec" formatting slightly more appealing,
and document and test that the module name must be absolute.
10 years ago
Steve Dower
9b608e539b
Closes #25078 : Document InstallAllUsers installer parameter default 0
10 years ago
Serhiy Storchaka
0424eaf753
Marked keystrokes with the :kbd: role.
Fixed the case of the "Ctrl-" prefixes.
10 years ago
Steve Dower
cb0afc84de
Removes invalid installer options from documentation.
10 years ago
Zachary Ware
1a83746418
Issue #24962 : Remove space from filename
11 years ago
Steve Dower
2434aa24e0
Adds support for an unattend.xml file to control the Windows installer options.
11 years ago
Steve Dower
a3d03ec6b1
Adds option to only install the launcher.
11 years ago
Steve Dower
af75a54193
Removes my username from the documentation.
11 years ago
Steve Dower
2237bdc595
Adds option to install launcher for all users even when installing Python just-for-me. This helps mitigate issues when the incompatible Python 3.4 launcher is installed.
Enables installer builds with the the text marker.
Allows simple installs to include a custom description.
11 years ago
Steve Dower
eb3c16d38c
Adds documentation for the new Windows embedded package.
11 years ago
Steve Dower
4a7fe7e397
Issue #23955 : Add pyvenv.cfg option to suppress registry/environment lookup for generating sys.path.
Also cleans up and secures getpathp.c
11 years ago
Steve Dower
1d4880db3d
Enables shortcuts to be deselected when installing on Windows.
11 years ago
Steve Dower
9a578d9ee6
Updates documentation for installing Python on Windows.
11 years ago
Larry Hastings
770ce204ee
Regenerated pydoc-topics and fixed bad/suspicious doc markup for Python 3.5.0a4.
11 years ago
Brett Cannon
f299abdafa
Issue #23731 : Implement PEP 488.
The concept of .pyo files no longer exists. Now .pyc files have an
optional `opt-` tag which specifies if any extra optimizations beyond
the peepholer were applied.
11 years ago
Serhiy Storchaka
1dd49824df
Issue #23681 : The -b option now affects comparisons of bytes with int.
11 years ago
Berker Peksag
f2d4e5773a
Add a versionadded directive for PEP 486.
11 years ago
Steve Dower
76998fef2c
Issue #23465 : Implement PEP 486 - Make the Python Launcher aware of virtual environments (patch by Paul Moore)
11 years ago
Vinay Sajip
3595276bdd
Corrected typo.
11 years ago
Vinay Sajip
c7e34fb0bb
Minor change to documentation on creating venvs.
11 years ago
Steve Dower
bb24087a2c
Issue #23260 : Update Windows installer
11 years ago
Vinay Sajip
71e7296016
Updated pyvenv documentation to match its current behaviour.
11 years ago
Berker Peksag
8b1cbd2b7c
Issue #12602 : Add missing cross-references to runpy and using/cmdline docs.
Patch by Éric Araujo.
11 years ago
Georg Brandl
b7354a65ce
Fixing broken links in doc, part 4: some more breaks and redirects
11 years ago
Georg Brandl
525d355984
Fixing broken links in doc, part 3: the rest
11 years ago
Georg Brandl
e73778c1ac
Use https:// URLs when referring to python.org hosts.
11 years ago
Georg Brandl
fe85807d7f
Fix link to ABOP install chapter.
11 years ago