summaryrefslogtreecommitdiffstats
path: root/Doc/library/sys.rst
Commit message (Collapse)AuthorAgeFilesLines
* (Merge 3.3) Issue #19728: Fix sys.getfilesystemencoding() documentationVictor Stinner2013-12-021-3/+2
|\
| * Issue #19728: Fix sys.getfilesystemencoding() documentationVictor Stinner2013-12-021-3/+2
| |
* | Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-291-1/+1
|\ \ | |/
| * Issue #19795: Improved markup of True/False constants.Serhiy Storchaka2013-11-291-1/+1
| |
* | ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'.Christian Heimes2013-11-201-0/+11
| | | | | | | | Python now uses SipHash24 on all major platforms.
* | #13226: update references from ctypes/DLFCN modules to os moduleAndrew Kuchling2013-06-211-4/+5
| |
* | merge fix for issue #17953Brett Cannon2013-05-241-0/+2
|\ \ | |/
| * Issue #17953: document that sys.modules shouldn't be replaced (thanksBrett Cannon2013-05-241-0/+2
| | | | | | | | | | | | | | | | | | to interp->modules) and that deleting essential items from the dict can cause Python to blow up. Thanks to Terry Reedy for coming up with initial wording and Yogesh Chaudhari for coming up with a patch using that wording in parallel to my own patch.
* | Issue #5845: Enable tab-completion in the interactive interpreter by ↵Antoine Pitrou2013-05-041-0/+10
| | | | | | | | | | | | default, thanks to a new sys.__interactivehook__. (original patch by Éric Araujo)
* | Merge with 3.3.Georg Brandl2013-03-281-0/+6
|\ \ | |/
| * Closes #4159: add LaTeX tabular column specifications to tables that ↵Georg Brandl2013-03-281-0/+6
| | | | | | | | otherwise are cut off or have overlapping text.
| * Issue #17176: Document that imp.NullImporter is no longerBrett Cannon2013-03-131-3/+6
| | | | | | | | automatically used by import.
* | Issue #17176: Document that imp.NullImporter is no longer insertedBrett Cannon2013-03-131-3/+6
| | | | | | | | into sys.path_importer_cache.
* | Merge fix for #15465 from 3.3Nick Coghlan2013-03-071-23/+1
|\ \ | |/
| * Close #15465: Document C API version macrosNick Coghlan2013-03-071-23/+1
| | | | | | | | | | | | | | Mostly moving the existing macro docs over from the standard library docs to the C API docs where they belong. Patch by Kushal Das.
* | merge 3.3 (#7340)Benjamin Peterson2013-01-151-15/+0
|\ \ | |/
| * remove warning about tb circular reference (closes #7340)Benjamin Peterson2013-01-151-15/+0
| |
* | Following issue #13390, fix compilation --without-pymalloc, and make ↵Antoine Pitrou2012-12-171-7/+8
| | | | | | | | sys.getallocatedblocks() return 0 in that situation.
* | Issue #13390: New function :func:`sys.getallocatedblocks()` returns the ↵Antoine Pitrou2012-12-091-0/+14
| | | | | | | | | | | | number of memory blocks currently allocated. Also, the ``-R`` option to regrtest uses this function to guard against memory allocation leaks.
* | Merge fixes for #13614, #13512 and #7719 from 3.3Éric Araujo2012-12-091-1/+1
|\ \ | |/
| * Merge fixes for #13614, #13512 and #7719 from 3.2Éric Araujo2012-12-091-1/+1
| |\
| | * Fix a few markup/grammar nitsÉric Araujo2012-12-081-1/+1
| | |
* | | - Issue #16514: Fix regression causing a traceback when sys.path[0] is NoneBarry Warsaw2012-11-201-1/+3
|\ \ \ | |/ / | | | | | | (actually, any non-string or non-bytes type).
| * | - Issue #16514: Fix regression causing a traceback when sys.path[0] is NoneBarry Warsaw2012-11-201-1/+3
| | | | | | | | | | | | (actually, any non-string or non-bytes type).
* | | #16135: Removal of OS/2 support (Docs)Jesus Cea2012-10-041-3/+0
|/ /
* | Added cross-references to venv definition.Vinay Sajip2012-07-091-11/+14
| |
* | Issue #14785: Add sys._debugmallocstats() to help debug low-level memory ↵David Malcolm2012-06-221-0/+16
| | | | | | | | allocation issues
* | Elaborate that sizeof only accounts for the object itself.Martin v. Löwis2012-06-171-0/+3
| |
* | A few documentation improvements, spurred on by Brett's review.Barry Warsaw2012-06-041-10/+13
| |
* | Eric Snow's implementation of PEP 421.Barry Warsaw2012-06-031-0/+38
| | | | | | | | Issue 14673: Add sys.implementation
* | Add missing versionadded.Georg Brandl2012-05-261-0/+6
| |
* | Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-261-0/+28
| |
* | Fix invalid markup and update suspicious ignores.Georg Brandl2012-03-041-1/+1
| |
* | merge with 3.2Georg Brandl2012-02-231-2/+3
|\ \ | |/
| * Fix markup errors.Georg Brandl2012-02-231-2/+4
| |
* | Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-201-0/+4
|\ \ | |/
| * Merge from 3.1: Issue #13703: add a way to randomize the hash values of ↵Georg Brandl2012-02-201-0/+4
| |\ | | | | | | | | | | | | | | | | | | | | | | | | 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-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge branch 3.2Petri Lehtinen2012-02-021-2/+4
|\ \ \ | |/ / | | | | | | Closes #13402.
| * | Document absoluteness of sys.executablePetri Lehtinen2012-02-021-2/+4
| | | | | | | | | | | | Closes #13402.
* | | Issue #13597: Improve documentation of standard streams.Antoine Pitrou2011-12-151-19/+30
|\ \ \ | |/ /
| * | Issue #13597: Improve documentation of standard streams.Antoine Pitrou2011-12-151-19/+30
| | |
* | | Issue #12245 merge.Mark Dickinson2011-11-191-2/+6
|\ \ \ | |/ /
| * | Issue #12245: Document sys.float_info.rounds better.Mark Dickinson2011-11-191-2/+6
| | |
* | | Issue #13226: Add RTLD_xxx constants to the os module. These constants can byVictor Stinner2011-10-251-5/+5
| | | | | | | | | | | | used with sys.setdlopenflags().
* | | Merge 3.2Éric Araujo2011-10-041-16/+16
|\ \ \ | |/ /
| * | Fix markup used in the documentation of sys.prefix and sys.exec_prefix.Éric Araujo2011-10-041-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | - Using the file role with {placeholders} is IMO clearer than fake Python code. - The fact that sys.version[:3] gives '3.2' is a CPython detail and should not be advertised (see #9442), even if some stdlib modules currently rely on that detail.
| * | Move doc of sys.dont_write_bytecode to make all attributes sorted againÉric Araujo2011-10-041-9/+9
| | |
* | | Fix minor wording issue.Éric Araujo2011-10-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | sys.maxunicode is not called and thus does not return anything; it *is* something. (I checked the doc quickly to see if it tells that expression return things but found nothing.) I also removed markup that would just generate a useless link to the enclosing section.
* | | #13054: sys.maxunicode is now always 0x10FFFF.Ezio Melotti2011-09-281-3/+7
| | |