summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
...
* | 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
* | getbuffer(): release the buffer on error (if the buffer is not contiguous)Victor Stinner2010-06-241-0/+1
* | PyArg_Parse*() functions: factorize code for s/z and u/Z formatsVictor Stinner2010-06-241-96/+25
* | Issue #8949: "z" format of PyArg_Parse*() functions doesn't accept bytesVictor Stinner2010-06-241-5/+0
* | Issue #9051: Instances of timezone class can now be pickled.Alexander Belopolsky2010-06-231-2/+2
* | Issue #8930: Remaining indentation fixes after the Grand Unified Indenting.Stefan Krah2010-06-231-42/+42
* | Merged revisions 82169 via svnmerge fromAntoine Pitrou2010-06-221-11/+11
* | Issue #6543: Write the traceback in the terminal encoding instead of utf-8.Victor Stinner2010-06-174-51/+61
* | 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