summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* use Py_REFCNTBenjamin Peterson2010-09-101-2/+2
* remove gil_drop_request in --without-threadsBenjamin Peterson2010-09-101-4/+13
* use DISPATCH() instead of continueBenjamin Peterson2010-09-101-1/+1
* Issue #9632: Remove sys.setfilesystemencoding() function: use PYTHONFSENCODINGVictor Stinner2010-09-102-44/+0
* bump magic number for DELETE_DEREFBenjamin Peterson2010-09-101-1/+2
* #4617: Previously it was illegal to delete a name from the localAmaury Forgeot d'Arc2010-09-103-24/+38
* Fix Issue #9752: MSVC compiler warning due to undefined functionDaniel Stutzbach2010-09-091-4/+7
* Issue #9804: ascii() now always represents unicode surrogate pairs asAntoine Pitrou2010-09-091-6/+20
* PEP 3149: Try to load the extension with the SOABI before tryingMatthias Klose2010-09-081-1/+1
* Issue #9797: pystate.c wrongly assumed that zero couldn't be a validAntoine Pitrou2010-09-081-8/+7
* Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replacedAntoine Pitrou2010-09-044-46/+17
* _warnings exposed two variables with the name 'default_action' andBrett Cannon2010-09-041-2/+2
* PEP 3149 is accepted.Barry Warsaw2010-09-031-6/+13
* Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding()Antoine Pitrou2010-09-011-20/+0
* only catch AttributeError in hasattr() #9666Benjamin Peterson2010-08-241-8/+5
* Issue 8403: Don't mask KeyboardInterrupt during peephole operation.Raymond Hettinger2010-08-221-4/+8
* Add tests for r84209 (crashes in the Ast builder)Amaury Forgeot d'Arc2010-08-191-3/+3
* Check the return values for all functions returning an ast node.Amaury Forgeot d'Arc2010-08-191-26/+27
* Issue #8622: Add PYTHONFSENCODING environment variable to override theVictor Stinner2010-08-181-22/+43
* Remove unused functions _PyImport_FindModule and _PyImport_IsScriptVictor Stinner2010-08-171-16/+0
* Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx().Victor Stinner2010-08-171-5/+5
* Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the mod...Nick Coghlan2010-08-171-3/+7
* Issue #9425: save/restore exception on filename encodingVictor Stinner2010-08-171-1/+6
* Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr()Victor Stinner2010-08-161-15/+67
* Create _Py_fopen() for PyUnicodeObject pathVictor Stinner2010-08-141-0/+33
* _Py_stat(): ensure that path ends with a nul characterVictor Stinner2010-08-141-2/+3
* Issue #9425: Create private _Py_stat() functionVictor Stinner2010-08-141-0/+33
* Issue #9203: Computed gotos are now enabled by default on supportedAntoine Pitrou2010-08-131-4/+17
* Issue #9425: Create PyErr_WarnFormat() functionVictor Stinner2010-08-131-6/+40
* Issue #9425: NullImporter constructor is fully unicode compliantVictor Stinner2010-08-131-38/+52
* Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99Alexander Belopolsky2010-08-112-45/+5
* Issue #8411: new condition variable emulation under Windows for the new GIL,Antoine Pitrou2010-08-101-52/+105
* Issue #9425: Create load_builtin() subfunctionVictor Stinner2010-08-091-30/+40
* Issue #477863: Print a warning at shutdown if gc.garbage is not empty.Antoine Pitrou2010-08-081-0/+3
* Issue #9425: fix setup_context() for non-ascii filenamesVictor Stinner2010-08-081-13/+11
* Issue #5319: Print an error if flushing stdout fails at interpreterAntoine Pitrou2010-08-081-1/+1
* Issue #9079: Added _PyTime_gettimeofday(_PyTime_timeval *tp) to C APIAlexander Belopolsky2010-08-052-0/+62
* Remove trailing whitespace.Georg Brandl2010-07-311-1/+1
* Update copyright years and add releases to release list. Also update Sphinx ...Georg Brandl2010-07-311-1/+1
* Issue #8991: convertbuffer() rejects discontigious buffersVictor Stinner2010-07-281-21/+8
* revert unintended changesBenjamin Peterson2010-07-203-20/+11
* move test_trace.py so as not to conflict with future tests for the trace moduleBenjamin Peterson2010-07-203-11/+20
* Regenerate Python/graminit.c.Mark Dickinson2010-07-121-18/+82
* #3071: tell how many values were expected when unpacking too many.Georg Brandl2010-07-101-1/+2
* - sysmodule.c (get_hash_info): Define as static function.Matthias Klose2010-07-061-1/+1
* Merged revisions 77402,77505,77510 via svnmerge fromBenjamin Peterson2010-06-281-10/+17
* Merged revisions 81380 via svnmerge fromBenjamin Peterson2010-06-271-1/+2
* Merged revisions 81465-81466,81468,81679,81735,81760,81868,82183 via svnmerge...Benjamin Peterson2010-06-271-2/+3
* only take into account positional arguments count in related error messagesBenjamin Peterson2010-06-251-3/+3
* Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, useVictor Stinner2010-06-251-47/+17