summaryrefslogtreecommitdiffstats
path: root/Doc/using/cmdline.rst
Commit message (Collapse)AuthorAgeFilesLines
...
* | Issue #12982: Merge from 3.5Berker Peksag2016-08-201-3/+1
|\ \ | |/
| * Issue #12982: Thanks to PEP 488, Python no longer creates .pyo filesBerker Peksag2016-08-201-3/+1
| |
* | 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.
* | 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.
* | 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.
* 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.
* 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.
* 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.
* | 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-131-1/+1
| | | | | | | | | | | | 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
|/
* 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 3: the restGeorg Brandl2014-10-291-1/+1
|
* 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
|
* 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 #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
|
* 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 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 #16241: document -X faulthandler command line option.Andrew Svetlov2012-10-231-1/+2
| | | | Patch by Marek Šuppa.
* 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.
* | Clarify that hash randomization is on by defaultAntoine Pitrou2012-08-011-17/+16
| |
* | Remove packaging from the standard library.Éric Araujo2012-06-241-2/+2
| | | | | | | | | | | | 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
* | merge with 3.2Georg Brandl2012-02-211-1/+1
|\ \ | |/
| * merge with 3.2Georg Brandl2012-02-211-1/+1
| |\
| | * Remove reST markup from --help output. Also: O(n**2) is dict construction, ↵Georg Brandl2012-02-211-1/+1
| | | | | | | | | | | | not single insertion.
* | | enable hash randomization by defaultBenjamin Peterson2012-02-211-6/+4
| | |
* | | Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-201-1/+46
|\ \ \ | |/ /
| * | Merge from 3.1: Issue #13703: add a way to randomize the hash values of ↵Georg Brandl2012-02-201-1/+46
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | | | | basic types (str, bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior.
| | * Issue #13703: add a way to randomize the hash values of basic types (str, ↵Georg Brandl2012-02-201-1/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | bytes, datetime) in order to make algorithmic complexity attacks on (e.g.) web apps much more complicated. The environment variable PYTHONHASHSEED and the new command line flag -R control this behavior.
| | * Merged revisions ↵Georg Brandl2010-10-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 82262,82269,82434,82480-82481,82484-82485,82487-82488,82594,82599,82615 via svnmerge from svn+ssh://svn.python.org/python/branches/py3k ................ r82262 | georg.brandl | 2010-06-27 12:17:12 +0200 (So, 27 Jun 2010) | 1 line #9078: fix some Unicode C API descriptions, in comments and docs. ................ r82269 | georg.brandl | 2010-06-27 12:59:19 +0200 (So, 27 Jun 2010) | 1 line Wording fix. ................ r82434 | georg.brandl | 2010-07-02 09:41:51 +0200 (Fr, 02 Jul 2010) | 9 lines Merged revisions 82433 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r82433 | georg.brandl | 2010-07-02 09:33:50 +0200 (Fr, 02 Jul 2010) | 1 line Grammar and markup fixes. ........ ................ r82480 | georg.brandl | 2010-07-03 12:21:50 +0200 (Sa, 03 Jul 2010) | 1 line Wrap and use the correct directive. ................ r82481 | georg.brandl | 2010-07-03 12:22:10 +0200 (Sa, 03 Jul 2010) | 1 line Use the right role. ................ r82484 | georg.brandl | 2010-07-03 12:26:17 +0200 (Sa, 03 Jul 2010) | 9 lines Recorded merge of revisions 82474 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r82474 | georg.brandl | 2010-07-03 10:40:13 +0200 (Sa, 03 Jul 2010) | 1 line Fix role name. ........ ................ r82485 | georg.brandl | 2010-07-03 12:26:54 +0200 (Sa, 03 Jul 2010) | 9 lines Merged revisions 82483 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r82483 | georg.brandl | 2010-07-03 12:25:54 +0200 (Sa, 03 Jul 2010) | 1 line Add link to bytecode docs. ........ ................ r82487 | georg.brandl | 2010-07-03 12:33:26 +0200 (Sa, 03 Jul 2010) | 1 line Fix markup. ................ r82488 | georg.brandl | 2010-07-03 12:41:33 +0200 (Sa, 03 Jul 2010) | 1 line Remove the need for a "()" empty argument list after opcodes. ................ r82594 | georg.brandl | 2010-07-05 22:13:41 +0200 (Mo, 05 Jul 2010) | 1 line Update Vec class constructor, remove indirection via function, use operator module. ................ r82599 | alexander.belopolsky | 2010-07-05 23:44:05 +0200 (Mo, 05 Jul 2010) | 1 line "Modernized" the demo a little. ................ r82615 | georg.brandl | 2010-07-07 00:58:50 +0200 (Mi, 07 Jul 2010) | 1 line Fix typo. ................