summaryrefslogtreecommitdiffstats
path: root/Doc/using
Commit message (Collapse)AuthorAgeFilesLines
...
| * Issue #12982: Thanks to PEP 488, Python no longer creates .pyo filesBerker Peksag2016-08-201-3/+1
| |
* | Merge with 3.5Zachary Ware2016-08-041-1/+1
|\ \ | |/
| * Fix half-finished sentence.Zachary Ware2016-08-041-1/+1
| | | | | | | | Reported by Linda Pescatore on docs@.
* | Merge with 3.5Zachary Ware2016-07-291-1/+1
|\ \ | |/
| * Correct typo in Windows docs.Zachary Ware2016-07-291-1/+1
| | | | | | | | Found by Jack Copper on docs@
* | Issue #27285: Document the deprecation of the pyvenv script.Brett Cannon2016-07-083-55/+53
| | | | | | | | | | | | | | | | | | As part of the update, the documentation was updated to normalize around the term "virtual environment" instead of relying too heavily on "venv" for the same meaning and leading to inconsistent usage of either. Thanks to Steve Piercy for the patch.
* | Issue #23034: The output of a special Python build with defined COUNT_ALLOCS,Serhiy Storchaka2016-07-031-0/+5
| | | | | | | | | | | | SHOW_ALLOC_COUNT or SHOW_TRACK_COUNT macros is now off by default. It can be re-enabled using the "-X showalloccount" option. It now outputs to stderr instead of stdout.
* | Issue #27393: Merge from 3.5Berker Peksag2016-06-271-2/+2
|\ \ | |/
| * Issue #27393: Fix escaping of C:\ tooBerker Peksag2016-06-271-2/+2
| |
* | Issue #27393: Merge from 3.5Berker Peksag2016-06-271-2/+2
|\ \ | |/
| * Issue #27393: Fix escaping of venv activate commands on WindowsBerker Peksag2016-06-271-2/+2
| | | | | | | | Patch by Manuel Kaufmann.
* | Issue #27064: The py.exe launcher now defaults to Python 3.Paul Moore2016-05-221-7/+15
| | | | | | | | | | The Windows launcher ``py.exe`` no longer prefers an installed Python 2 version over Python 3 by default when used interactively.
* | merge from 3.5Senthil Kumaran2016-05-181-2/+2
|\ \ | |/ | | | | issue27045 - Use backslash in windows path to script file.
| * issue27045 - Use backslash in windows path to script file.Senthil Kumaran2016-05-181-2/+2
| |
* | Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-073-9/+9
|\ \ | |/
| * Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-073-9/+9
| |
* | PyMem_Malloc() now uses the fast pymalloc allocatorVictor Stinner2016-04-221-6/+5
| | | | | | | | | | | | | | 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.
* | Issue #25910: Fixed more links in the docs.Serhiy Storchaka2016-04-111-2/+2
|\ \ | |/
| * Issue #25910: Fixed more links in the docs.Serhiy Storchaka2016-04-111-2/+2
| |
* | Fix typo in doc: avoid the french "& cie" :-)Victor Stinner2016-03-231-4/+4
| |
* | Doc: fix typos, patch written by Stefan BehnelVictor Stinner2016-03-181-4/+4
| |
* | Enhance documentation on malloc debug hooksVictor Stinner2016-03-181-6/+10
| | | | | | | | Issue #26564, #26516, #26563.
* | Add PYTHONMALLOC env varVictor Stinner2016-03-141-6/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | merge with 3.5Georg Brandl2016-02-263-19/+19
|\ \ | |/
| * Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵Georg Brandl2016-02-263-19/+19
| | | | | | | | to SilentGhost for the patch.
* | merge with 3.5Georg Brandl2016-02-261-3/+3
|\ \ | |/
| * Fix version.Georg Brandl2016-02-261-3/+3
|/
* Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak.Georg Brandl2016-02-251-1/+1
|
* Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similarMartin Panter2016-02-101-1/+1
| | | | | The original form is incorrect grammar and feels awkward, even though the meaning is clear.
* Update "Creating Virtual Environments" link in venv documentationBerker Peksag2016-01-301-1/+1
|
* Update output of venv -hBerker Peksag2016-01-301-4/+5
| | | | | * Update description of the --system-site-packages option * Show --copies option in the usage
* Issue #26034: Sync documentation of --clear with its behaviorBerker Peksag2016-01-281-3/+2
| | | | Most of the docs has already been updated in c3c188a0325a.
* Issue #25089: Adds short documentation section for modifying an install.Steve Dower2016-01-161-0/+17
|
* Issue #25874: Clarify platform support in the "Using Python on Windows" doc.Brett Cannon2015-12-271-0/+8
| | | | Thanks to Chris Wilcox for the initial patch.
* Issue #14285: Do not catch exceptions initializing any ancestor packageMartin Panter2015-12-101-1/+1
| | | | | | | | 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.
* Closes #25078: Document InstallAllUsers installer parameter default 0Steve Dower2015-09-131-1/+1
|
* Marked keystrokes with the :kbd: role.Serhiy Storchaka2015-09-121-1/+1
|\ | | | | | | Fixed the case of the "Ctrl-" prefixes.
| * Marked keystrokes with the :kbd: role.Serhiy Storchaka2015-09-121-1/+1
| | | | | | | | Fixed the case of the "Ctrl-" prefixes.
* | Removes invalid installer options from documentation.Steve Dower2015-09-111-2/+2
| |
* | Issue #24962: Merge 3.4Zachary Ware2015-08-301-2/+3
|\ \ | |/
| * Issue #24962: Remove space from filenameZachary Ware2015-08-301-2/+3
| |
* | Adds documentation for the new Windows embedded package.Steve Dower2015-08-081-4/+89
| |
* | Adds support for an unattend.xml file to control the Windows installer options.Steve Dower2015-07-181-0/+14
| |
* | Adds option to only install the launcher.Steve Dower2015-07-181-0/+3
| |
* | Removes my username from the documentation.Steve Dower2015-07-171-0/+0
| |
* | Adds option to install launcher for all users even when installing Python ↵Steve Dower2015-07-162-2/+10
| | | | | | | | | | | | | | 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.
* | Issue #23955: Add pyvenv.cfg option to suppress registry/environment lookup ↵Steve Dower2015-05-221-3/+18
| | | | | | | | | | | | for generating sys.path. Also cleans up and secures getpathp.c
* | Enables shortcuts to be deselected when installing on Windows.Steve Dower2015-05-031-0/+3
| |
* | Updates documentation for installing Python on Windows.Steve Dower2015-05-032-24/+22
| |
* | Regenerated pydoc-topics and fixed bad/suspicious doc markup for Python 3.5.0a4.Larry Hastings2015-04-191-1/+1
| |