summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* PyArg_Parse*("Z#") raises an error for unknown typeVictor Stinner2010-06-081-3/+4
* Py_FatalError(): don't sys sys.last_xxx variablesVictor Stinner2010-06-081-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-074-36/+4
* convertsimple(): call PyErr_NoMemory() on PyMem_NEW() failureVictor Stinner2010-06-061-0/+2
* Simplify getbuffer(): convertbuffer() fails anyway if bf_getbuffer is NULLVictor Stinner2010-06-061-19/+11
* use atomic structures in non-thread versionBenjamin Peterson2010-05-301-1/+1
* Remove dead codeVictor Stinner2010-05-291-12/+1
* Issue #8837: Remove "O?" format of PyArg_Parse*() functions. The format is noVictor Stinner2010-05-281-11/+0
* Issue #8188: Introduce a new scheme for computing hashes of numbersMark Dickinson2010-05-231-0/+56
* Issue #3798: sys.exit(message) writes the message to sys.stderr file, insteadVictor Stinner2010-05-211-4/+6
* Merged revisions 81398 via svnmerge fromAntoine Pitrou2010-05-211-2/+8
* Issue #8766: Initialize _warnings module before importing the first module.Victor Stinner2010-05-192-2/+4
* Issue #8589: Decode PYTHONWARNINGS environment variable with the file systemVictor Stinner2010-05-191-8/+13
* Issue #6697: Fix a crash if sys.stdin or sys.stdout encoding contain a surrogateVictor Stinner2010-05-191-7/+16
* Issue #6697: Fix a crash if a keyword contains a surrogateVictor Stinner2010-05-191-6/+9
* Issue #6697: Check that _PyUnicode_AsString() result is not NULLVictor Stinner2010-05-191-5/+21
* handle_system_exit() flushs files to warranty the output orderVictor Stinner2010-05-171-0/+4
* Merged revisions 81220 via svnmerge fromVictor Stinner2010-05-151-1227/+1227
* Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a UnicodeVictor Stinner2010-05-151-10/+2
* Issue #8610: Load file system codec at startup, and display a fatal error onVictor Stinner2010-05-152-22/+51
* Issue #4653: fix typo in flush_std_files()Victor Stinner2010-05-141-1/+1
* Make PyErr_Occurred return NULL if there is no current thread. Previously itJeffrey Yasskin2010-05-131-3/+8
* Remove unnecessary assignments.Mark Dickinson2010-05-131-4/+1
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-0951-25045/+25045
* Merged revisions 81007 via svnmerge fromJean-Paul Calderone2010-05-091-0/+4
* PyErr_SetFromErrnoWithFilename() decodes the filename usingVictor Stinner2010-05-081-1/+1
* err_input(): don't encode/decode the unicode messageVictor Stinner2010-05-081-13/+12
* read eval_breaker with atomic api with computed gotosBenjamin Peterson2010-05-031-1/+1
* Make (most of) Python's tests pass under Thread Sanitizer.Jeffrey Yasskin2010-05-035-55/+253
* prevent the dict constructor from accepting non-string keyword args #8419Benjamin Peterson2010-04-241-0/+15
* Issue #8124: PySys_WriteStdout() and PySys_WriteStderr() don't executeVictor Stinner2010-04-231-2/+45
* Merged revisions 80325 via svnmerge fromAntoine Pitrou2010-04-211-16/+4
* PEP 3147Barry Warsaw2010-04-172-28/+365
* Issue #7316: the acquire() method of lock objects in the :mod:`threading`Antoine Pitrou2010-04-142-27/+107
* Merged revisions 79837 via svnmerge fromAntoine Pitrou2010-04-061-10/+0
* Merged revisions 79763 via svnmerge fromBenjamin Peterson2010-04-041-1/+1
* Merged revisions 79642,79644 via svnmerge fromBenjamin Peterson2010-04-031-1/+5
* Merged revisions 79555 via svnmerge fromAntoine Pitrou2010-04-011-12/+1
* Merged revisions 79428 via svnmerge fromBenjamin Peterson2010-03-251-2/+2
* Issue #8226: sys.setfilesystemencoding() raises a LookupError if the encodingVictor Stinner2010-03-251-1/+5
* nest if for clarityBenjamin Peterson2010-03-211-8/+8
* count keyword only arguments as part of the totalBenjamin Peterson2010-03-211-2/+2
* Merged revisions 78028 via svnmerge fromBenjamin Peterson2010-03-211-3/+0
* cleanup a bitBenjamin Peterson2010-03-211-24/+15
* Merged revisions 79205,79219,79228,79230,79232-79233,79235,79237 via svnmerge...Benjamin Peterson2010-03-211-18/+18
* Merged revisions 79034 via svnmerge fromBenjamin Peterson2010-03-171-0/+5
* * Replaces the internals of the subprocess module from fork through exec onGregory P. Smith2010-03-141-0/+26
* Issue #8014: Fix incorrect error checks in structmember.c, and re-enableMark Dickinson2010-03-131-3/+4
* Issue #6697: use %U format instead of _PyUnicode_AsString(), becauseVictor Stinner2010-03-122-4/+4