summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* 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
* 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