summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* ceval.c: catch recursion error on _PyUnicode_AsString(co->co_filename)Victor Stinner2010-10-131-0/+4
* Issue #10062: Allow building on platforms which do not have sem_timedwait.Antoine Pitrou2010-10-101-1/+2
* fileutils.c: document which encodings are usedVictor Stinner2010-10-071-6/+26
* _Py_wrealpath() requires the size of the output bufferVictor Stinner2010-10-072-3/+4
* _Py_stat() and _Py_fopen(): avoid PyUnicode_AsWideCharString() on WindowsVictor Stinner2010-10-071-18/+6
* Fix fileutils for WindowsVictor Stinner2010-10-071-8/+7
* Ooops, fileutils.c contains twice the same codeVictor Stinner2010-10-071-380/+0
* Create fileutils.c/.hVictor Stinner2010-10-073-93/+759
* _wrealpath() and _Py_wreadlink() support surrogates (PEP 383)Victor Stinner2010-10-071-3/+4
* PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject*Victor Stinner2010-10-071-3/+3
* Create a subfunction for PySys_SetArgvEx()Victor Stinner2010-10-061-78/+94
* #9060 Let platforms without dup2() compile the replacement fonction without e...Amaury Forgeot d'Arc2010-10-051-0/+1
* Remove an unreferenced variable. len is no longer needed.Brian Curtin2010-09-291-1/+0
* Issue #9630: Redecode filenames when setting the filesystem encodingVictor Stinner2010-09-291-0/+258
* Issue #9979: Use PyUnicode_AsWideCharString() in import.cVictor Stinner2010-09-291-18/+16
* Since __import__ is not designed for general use, have its docstring pointBrett Cannon2010-09-271-2/+6
* revert r85003, poorly considered; breaks testsBenjamin Peterson2010-09-251-1/+1
* don't count keyword arguments as positional #9943Benjamin Peterson2010-09-251-1/+1
* add column offset to all syntax errorsBenjamin Peterson2010-09-204-33/+56
* add PyErr_SyntaxLocationEx, to support adding a column offsetBenjamin Peterson2010-09-201-1/+17
* Issue #9901: Destroying the GIL in Py_Finalize() can fail if some otherAntoine Pitrou2010-09-201-5/+8
* issue 9786 Native TLS support for pthreadsKristján Valur Jónsson2010-09-203-1/+49
* PyImport_Import was using the old import hack of sticking a dummy value intoBrett Cannon2010-09-191-3/+13
* Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properlyAntoine Pitrou2010-09-133-4/+34
* Fix incorrect comment regarding MAGIC and TAG in import.cNick Coghlan2010-09-111-2/+5
* typoBenjamin Peterson2010-09-101-2/+2
* 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