summaryrefslogtreecommitdiffstats
path: root/Doc/using
Commit message (Collapse)AuthorAgeFilesLines
* 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 #25910: Fixed more links in the docs.Serhiy Storchaka2016-04-111-2/+2
|
* Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵Georg Brandl2016-02-263-19/+19
| | | | to SilentGhost for the patch.
* 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
| |
* | Issue #23731: Implement PEP 488.Brett Cannon2015-04-132-5/+3
| | | | | | | | | | | | 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.
* | Issue #23681: The -b option now affects comparisons of bytes with int.Serhiy Storchaka2015-03-201-1/+4
| |
* | Add a versionadded directive for PEP 486.Berker Peksag2015-03-021-0/+2
| |
* | Issue #23465: Implement PEP 486 - Make the Python Launcher aware of virtual ↵Steve Dower2015-02-261-0/+20
| | | | | | | | environments (patch by Paul Moore)
* | Closes #23357: Updated documentation on creating venvs.Vinay Sajip2015-02-071-4/+7
|\ \ | |/
| * Corrected typo.Vinay Sajip2015-02-071-1/+1
| |
| * Minor change to documentation on creating venvs.Vinay Sajip2015-02-071-4/+7
| |
* | Issue #23260: Update Windows installerSteve Dower2015-02-062-168/+339
|/
* Updated pyvenv documentation to match its current behaviour.Vinay Sajip2015-01-231-2/+5
|
* Issue #12602: Add missing cross-references to runpy and using/cmdline docs.Berker Peksag2014-12-091-4/+8
| | | | Patch by Éric Araujo.
* Fixing broken links in doc, part 4: some more breaks and redirectsGeorg Brandl2014-10-291-2/+2
|
* Fixing broken links in doc, part 3: the restGeorg Brandl2014-10-295-16/+14
|
* Use https:// URLs when referring to python.org hosts.Georg Brandl2014-10-294-11/+11
|
* Fix link to ABOP install chapter.Georg Brandl2014-10-281-2/+2
|
* Update Opensolaris advice to OpenCSW instead of defunct Blastwave.Georg Brandl2014-10-281-3/+2
|
* PYTHONY2K is long gone. Remove traces from the docs and manpage.Georg Brandl2014-10-281-8/+0
|
* Revert #22251Berker Peksag2014-09-271-5/+1
|
* Issue #22251: Fix ReST markup to avoid errors building docs.Berker Peksag2014-09-271-1/+5
|
* asyncio: document the debug modeVictor Stinner2014-06-221-2/+2
|
* Merge in all documentation changes since branching 3.4.0rc1.Larry Hastings2014-03-163-1/+15
|
* asyncio, Tulip issue #136: Add get/set_debug() methods to BaseEventLoopTests.Victor Stinner2014-02-191-0/+8
| | | | | | Add also a PYTHONASYNCIODEBUG environment variable to debug coroutines since Python startup, to be able to debug coroutines defined directly in the asyncio module.
* whatsnew: -m <namespace package>, plus 'using' doc updates.R David Murray2014-02-021-1/+5
|