summaryrefslogtreecommitdiff
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0],Christian Heimes2013-07-221-3/+4
* Issue #15242: Have PyImport_GetMagicTag() return a const char *Brett Cannon2012-07-091-14/+18
* Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo...David Malcolm2012-06-221-0/+23
* Eric Snow's implementation of PEP 421.Barry Warsaw2012-06-031-2/+70
* Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-261-0/+4
* Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-211-72/+36
|\
| * Merge branch 3.2Petri Lehtinen2012-02-021-72/+36
| |\
| | * use the static identifier api for looking up special methodsBenjamin Peterson2012-01-221-3/+3
| | * Issue #13226: Update sys.setdlopenflags() docstringVictor Stinner2011-10-311-3/+1
| | * Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.Martin v. Löwis2011-10-141-2/+3
| | * Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-4/+4
| | * Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-3/+6
| | * Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-1/+2
| | * Use the new Py_ARRAY_LENGTH macroVictor Stinner2011-09-291-1/+1
| | * #13054: sys.maxunicode is now always 0x10FFFF.Ezio Melotti2011-09-291-2/+2
| | * Issue #11223: Replace threading._info() by sys.thread_infoVictor Stinner2011-04-301-9/+15
| | * Merge 3.2: sys.getfilesystemencoding() raises a RuntimeError ifVictor Stinner2011-03-311-2/+3
| | |\
| | * | Remove traces of division_warning left over from Python 2 (#10998)Éric Araujo2011-03-261-4/+2
| | * | #11515: Merge with 3.2.Ezio Melotti2011-03-151-96/+1
| | |\ \
| | | * | Remove sys.subversion and svn build identification leftovers.Georg Brandl2011-03-061-94/+0
| | | * | Merge build identification to default branch.Georg Brandl2011-03-061-0/+3
| | | |\ \
| | | * | | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-2/+1
* | | | | | Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-201-192/+503
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Document absoluteness of sys.executablePetri Lehtinen2012-02-021-1/+1
| * | | | | MERGE: Up-port changeset 5cf8f6da8743 (closes #11890)Jesus Cea2011-04-201-190/+501
| |\ \ \ \ \ | | | |_|_|/ | | |/| | |
| | * | | | sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was notVictor Stinner2011-03-311-2/+3
| | |/ / /
| | * | | #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
| | |\ \ \ | | | |_|/ | | |/| |
| | * | | Merge build identification to 3.2 branch.Georg Brandl2011-03-061-188/+498
| | |\ \ \ | | | |/ / | | |/| / | | | |/
| | | * Fix count of flag fields. Being one short caused the 'quiet' option not to p...Raymond Hettinger2011-01-051-2/+2
| | | * Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric...Georg Brandl2010-12-281-1/+3
| | | * Issue #10601: sys.displayhook uses 'backslashreplace' error handler onVictor Stinner2010-12-041-2/+76
| | | * Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-1/+0
| | | * Include structseq.h in Python.h, and remove now-redundant includes in individ...Georg Brandl2010-11-301-1/+0
| | | * sys_update_path(): update sys.path even if argc==0Victor Stinner2010-10-251-2/+0
| | | * follow up to #9778: define and use an unsigned hash typeBenjamin Peterson2010-10-231-1/+1
| | | * Issue #10089: Add support for arbitrary -X options on the command-line.Antoine Pitrou2010-10-211-0/+60
| | | * make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-171-1/+1
| | | * First (uncontroversial) part of issue 9807.Barry Warsaw2010-10-161-0/+4
| | | * _Py_wrealpath() requires the size of the output bufferVictor Stinner2010-10-071-1/+1
| | | * Create fileutils.c/.hVictor Stinner2010-10-071-28/+1
| | | * _wrealpath() and _Py_wreadlink() support surrogates (PEP 383)Victor Stinner2010-10-071-3/+4
| | | * Create a subfunction for PySys_SetArgvEx()Victor Stinner2010-10-061-78/+94
| | | * Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODINGVictor Stinner2010-09-101-21/+0
| | | * Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding()Antoine Pitrou2010-09-011-20/+0
| | | * Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the mod...Nick Coghlan2010-08-171-3/+7
| | | * Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr()Victor Stinner2010-08-161-15/+67
| | | * - sysmodule.c (get_hash_info): Define as static function.Matthias Klose2010-07-061-1/+1
| | | * sys_pyfile_write() does nothing if file is NULLVictor Stinner2010-06-081-0/+3
| | | * Issue #8848: U / U# formats of Py_BuildValue() are just alias to s / s#Victor Stinner2010-06-071-1/+1
| | | * Issue #8188: Introduce a new scheme for computing hashes of numbersMark Dickinson2010-05-231-0/+56