summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* Typo repair.Barry Warsaw2010-06-171-4/+4
* Issue #9011: Remove buggy and unnecessary ST->AST compilation codeMark Dickinson2010-06-171-26/+0
* getargs.c: remove last reference to "t#" formatVictor Stinner2010-06-131-1/+0
* Issue #8592: PyArg_Parse*() functions raise a TypeError for "y", "u" and "Z"Victor Stinner2010-06-131-3/+17
* Merged revisions 81906 via svnmerge fromBenjamin Peterson2010-06-111-1/+1
* Issue #8965: initfsencoding() doesn't change the encoding on Mac OS XVictor Stinner2010-06-111-17/+19
* Issue #8950: Make PyArg_Parse* with 'L' code raise for float inputs,Mark Dickinson2010-06-101-17/+3
* Issue #8838, #8339: Remove codecs.charbuffer_encode() and "t#" parsing formatVictor Stinner2010-06-081-40/+1
* 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