aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/sysmodule.c
Commit message (Expand)AuthorAge
* Issue #15242: Have PyImport_GetMagicTag() return a const char *Brett Cannon2012-07-09
* Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo...David Malcolm2012-06-22
* Eric Snow's implementation of PEP 421.Barry Warsaw2012-06-03
* Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-26
* Merge 3.2: Issue #13703 plus some related test suite fixes.Georg Brandl2012-02-21
|\
| * Merge from 3.1: Issue #13703: add a way to randomize the hash values of basic...Georg Brandl2012-02-20
| |\
| | * Issue #13703: add a way to randomize the hash values of basic types (str, byt...Georg Brandl2012-02-20
* | | Merge branch 3.2Petri Lehtinen2012-02-02
|\| |
| * | Document absoluteness of sys.executablePetri Lehtinen2012-02-02
| * | MERGE: Up-port changeset 5cf8f6da8743 (closes #11890)Jesus Cea2011-04-20
| |\|
| | * Up-port changeset 5cf8f6da8743 (closes #11890)Jesus Cea2011-04-20
* | | use the static identifier api for looking up special methodsBenjamin Peterson2012-01-22
* | | Issue #13226: Update sys.setdlopenflags() docstringVictor Stinner2011-10-31
* | | Port SetAttrString/HasAttrString to SetAttrId/GetAttrId.Martin v. Löwis2011-10-14
* | | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-14
* | | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-10
* | | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-09
* | | Use the new Py_ARRAY_LENGTH macroVictor Stinner2011-09-29
* | | #13054: sys.maxunicode is now always 0x10FFFF.Ezio Melotti2011-09-29
* | | Issue #11223: Replace threading._info() by sys.thread_infoVictor Stinner2011-04-30
* | | Merge 3.2: sys.getfilesystemencoding() raises a RuntimeError ifVictor Stinner2011-03-31
|\| |
| * | sys.getfilesystemencoding() raises a RuntimeError if initfsencoding() was notVictor Stinner2011-03-31
* | | Remove traces of division_warning left over from Python 2 (#10998)Éric Araujo2011-03-26
* | | #11515: Merge with 3.2.Ezio Melotti2011-03-15
|\| |
| * | #11515: Merge with 3.1.Ezio Melotti2011-03-15
| |\|
* | | Remove sys.subversion and svn build identification leftovers.Georg Brandl2011-03-06
* | | Merge build identification to default branch.Georg Brandl2011-03-06
|\| |
| * | Merge build identification to 3.2 branch.Georg Brandl2011-03-06
| |\|
| | * Commit the hg build identification patch from the pymigr repo.Georg Brandl2011-03-05
| | * Merged revisions 81841 via svnmerge fromVictor Stinner2010-06-08
| | * Merged revisions 81400 via svnmerge fromAntoine Pitrou2010-05-21
| | * Recorded merge of revisions 81032 via svnmerge fromAntoine Pitrou2010-05-09
| | * Merged revisions 80404 via svnmerge fromVictor Stinner2010-04-23
| | * Merged revisions 78622 via svnmerge fromFlorent Xicluna2010-03-03
| | * Merged revisions 74062 via svnmerge fromGeorg Brandl2009-08-13
* | | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-22
|/ /
* | Fix count of flag fields. Being one short caused the 'quiet' option not to p...Raymond Hettinger2011-01-05
* | Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric...Georg Brandl2010-12-28
* | Issue #10601: sys.displayhook uses 'backslashreplace' error handler onVictor Stinner2010-12-04
* | Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-30
* | Include structseq.h in Python.h, and remove now-redundant includes in individ...Georg Brandl2010-11-30
* | sys_update_path(): update sys.path even if argc==0Victor Stinner2010-10-25
* | follow up to #9778: define and use an unsigned hash typeBenjamin Peterson2010-10-23
* | Issue #10089: Add support for arbitrary -X options on the command-line.Antoine Pitrou2010-10-21
* | make hashes always the size of pointers; introduce Py_hash_t #9778Benjamin Peterson2010-10-17
* | First (uncontroversial) part of issue 9807.Barry Warsaw2010-10-16
* | _Py_wrealpath() requires the size of the output bufferVictor Stinner2010-10-07
* | Create fileutils.c/.hVictor Stinner2010-10-07
* | _wrealpath() and _Py_wreadlink() support surrogates (PEP 383)Victor Stinner2010-10-07
* | Create a subfunction for PySys_SetArgvEx()Victor Stinner2010-10-06