summaryrefslogtreecommitdiffstats
path: root/Doc/using
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Issue #20265: Merge with 3.3Zachary Ware2014-01-171-13/+10
|\
| * Issue #20265: Updated some parts of the Using Windows document.Zachary Ware2014-01-171-13/+10
| | | | | | | | | | | | | | Includes: -mention cx_Freeze instead of py2exe (at least until py2exe supports Python 3) -update ActivePython link -Remove mention of platforms that were never supported by Python 3 (Win9x, DOS)
* | shelf in with stmt, fish/csh in venv, ElementTree short_empty_elements keyword.R David Murray2013-12-261-0/+2
| | | | | | | | | | | | Also added versionadded for for fish/csh, fixed indentation of versionadded for ElementTree.write, and make the behavior of shelf as a context manager explicit in the docs.
* | Issue #19845: Updated the Compiling Python on Windows docs.Zachary Ware2013-11-301-13/+9
|\ \ | |/
| * Issue #19845: Updated the Compiling Python on Windows docs.Zachary Ware2013-11-301-8/+10
| |
* | Issue #18874: Remove tracemalloc.set_traceback_limit()Victor Stinner2013-11-231-8/+10
| | | | | | | | tracemalloc.start() now has an option nframe parameter
* | Issue #18874: Implement the PEP 454 (tracemalloc)Victor Stinner2013-11-231-2/+16
| |
* | Close #19552: venv and pyvenv ensurepip integrationNick Coghlan2013-11-221-1/+9
| |
* | Issue #18818: The "encodingname" part of PYTHONIOENCODING is now optional.Serhiy Storchaka2013-09-131-3/+6
| |
* | Close #18957: The PYTHONFAULTHANDLER environment variable now only enables theVictor Stinner2013-09-081-8/+8
| | | | | | | | | | faulthandler module if the variable is non-empty. Same behaviour than other variables like PYTHONDONTWRITEBYTECODE.
* | Issue #16400: Add command line option for isolated mode.Christian Heimes2013-08-101-2/+15
| | | | | | | | | | | | | | | | | | | | -I Run Python in isolated mode. This also implies -E and -s. In isolated mode sys.path contains neither the script’s directory nor the user’s site-packages directory. All PYTHON* environment variables are ignored, too. Further restrictions may be imposed to prevent the user from injecting malicious code.
* | (Merge 3.3) doc of PYTHONFAULTHANDLER env var: add missing "versionadded" tagVictor Stinner2013-07-281-0/+2
|\ \ | |/
| * doc of PYTHONFAULTHANDLER env var: add missing "versionadded" tagVictor Stinner2013-07-281-0/+2
| |
* | #16937: merge with 3.3.Ezio Melotti2013-07-251-2/+2
|\ \ | |/
| * #16937: document that stdin is always buffered, even when -u is used. Patch ↵Ezio Melotti2013-07-251-2/+2
| | | | | | | | by Elena Oat.
* | Issue #5845: Enable tab-completion in the interactive interpreter by ↵Antoine Pitrou2013-05-041-2/+7
| | | | | | | | | | | | default, thanks to a new sys.__interactivehook__. (original patch by Éric Araujo)
* | merge with 3.3Georg Brandl2013-04-141-11/+10
|\ \ | |/
| * Update using/mac documentation which was still on 2.5.Georg Brandl2013-04-141-11/+10
| |
* | #17686: merge with 3.3.Ezio Melotti2013-04-131-1/+1
|\ \ | |/
| * #17686: fix broken link in Doc/using/unix.rst. Patch by Dan Riti.Ezio Melotti2013-04-131-1/+1
| |
* | Merge versionadded addition and typo fix from 3.3.Ezio Melotti2013-03-261-1/+4
|\ \ | |/
| * Add versionadded for `-X faulthandler` (also fix typo and markup).Ezio Melotti2013-03-261-2/+5
| |
* | #17323: The "[X refs, Y blocks]" printed by debug builds has been disabled ↵Ezio Melotti2013-03-251-3/+11
| | | | | | | | by default. It can be re-enabled with the `-X showrefcount` option.
* | Issue #15116: merge from 3.3Ned Deily2013-02-021-14/+0
|\ \ | |/
| * Issue #15116: merge from 3.2Ned Deily2013-02-021-14/+0
| |\
| | * Issue #15116: Remove references to appscript as it is no longer beingNed Deily2013-02-021-14/+0
| | | | | | | | | | | | supported.
| | * Fix Sphinx warning (missing "setting-envvars" reference).Chris Jerdonek2012-12-251-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | This fixes the following warning when building the docs (probably from the commit for issue #14901): "/Doc/faq/windows.rst:138: WARNING: undefined label: setting-envvars (if the link has no caption the label must precede a section header)"
* | | Issue #16241: document -X faulthandler command line option.Andrew Svetlov2012-10-231-1/+2
|\ \ \ | |/ / | | | | | | Patch by Marek Šuppa.
| * | Issue #16241: document -X faulthandler command line option.Andrew Svetlov2012-10-231-1/+2
| | | | | | | | | | | | Patch by Marek Šuppa.
* | | Merge wrong escape removal with 3.3.Ezio Melotti2012-10-191-1/+1
|\ \ \ | |/ /
| * | Remove wrong escape in code snippet.Ezio Melotti2012-10-191-1/+1
| | |
* | | Merge issue #9583: Document startup option/environment interaction.Andrew Svetlov2012-10-171-2/+4
|\ \ \ | |/ / | | | | | | Patch by Todd Rovito.
| * | Merge issue #9583: Document startup option/environment interaction.Andrew Svetlov2012-10-171-2/+4
| |\ \ | | |/ | | | | | | Patch by Todd Rovito.
| | * Issue #9583: Document startup option/environment interaction.Andrew Svetlov2012-10-171-2/+4
| | | | | | | | | | | | Patch by Todd Rovito.
* | | Issue #15417: Add support for csh and fish in venv activation scripts.Andrew Svetlov2012-10-041-14/+15
|/ /
* | What's new entry for PEP 397 and Windows PATH modificationNick Coghlan2012-09-301-0/+2
| |
* | Improve the pyvenv entryAntoine Pitrou2012-08-201-0/+2
| |
* | Fixes #14668. Mention Windows Path manipulation option in the installer.Brian Curtin2012-08-191-9/+21
| |
* | merge with 3.2Sandro Tosi2012-08-121-1/+1
|\ \ | |/
| * update Geany URL; thanks to Karl Tarbet from docs@Sandro Tosi2012-08-121-1/+1
| |
* | Clarify that hash randomization is on by defaultAntoine Pitrou2012-08-011-17/+16
| |
* | Factored out common venv documentation and added more information about ↵Vinay Sajip2012-07-102-85/+86
| | | | | | | | Distribute/pip.
* | Added cross-references to venv definition.Vinay Sajip2012-07-091-25/+3
| |
* | Issue #15283: Updated pyvenv documentation to expand on activation.Vinay Sajip2012-07-091-2/+31
| |
* | Closes #15241: Added information on venv prefixes to pyvenv section.Vinay Sajip2012-07-031-0/+22
| |
* | Added Windows launcher documentation.Vinay Sajip2012-06-241-7/+261
| |
* | Remove packaging from the standard library.Éric Araujo2012-06-242-4/+3
| | | | | | | | | | | | Distutils2 will live on on PyPI and be included in the stdlib when it is ready. See discussion starting at http://mail.python.org/pipermail/python-dev/2012-June/120430.html