168 Commits (bbe2f60b3c19ecaa02ca07be14474eaacfcb59a0)

Author SHA1 Message Date
Victor Stinner c68b6aaec8 Issue #9319: Fix a crash on parsing a Python source code without encoding 15 years ago
Victor Stinner 034c7537d8 Issue #10841: don't translate newlines for pgen 15 years ago
Victor Stinner 89e3436606 Issue #10841: set binary mode on files; the parser translates newlines 15 years ago
Victor Stinner aaa4e9a438 Remove arbitrary string length limits 15 years ago
Victor Stinner 83098a4095 Issue #10778: decoding_fgets() decodes the filename from the filesystem 15 years ago
Victor Stinner 22a351aabf Issue #10095: fp_setreadl() doesn't reopen the file, reuse instead the file 16 years ago
Antoine Pitrou 7f14f0d8a0 Recorded merge of revisions 81032 via svnmerge from 16 years ago
Antoine Pitrou f95a1b3c53 Recorded merge of revisions 81029 via svnmerge from 16 years ago
Victor Stinner 003a5e702b Use PyErr_Format() in decoding_fgets() 16 years ago
Benjamin Peterson 4893abc77a Merged revisions 79725 via svnmerge from 16 years ago
Benjamin Peterson 8daa49ee34 Merged revisions 79723 via svnmerge from 16 years ago
Victor Stinner ffbc2f63e1 Merged revisions 78872 via svnmerge from 16 years ago
Victor Stinner 52f6dd7a3d Merged revisions 78826 via svnmerge from 16 years ago
Victor Stinner 151205f24f Merged revisions 78608 via svnmerge from 16 years ago
Victor Stinner 6aa278ee53 Merged revisions 78603 via svnmerge from 16 years ago
Benjamin Peterson 8f326b2369 Merged revisions 76052,76522,76591,76689,76697,76733 via svnmerge from 16 years ago
Benjamin Peterson 8f6713f46d Merged revisions 76235 via svnmerge from 17 years ago
Benjamin Peterson a0dfa82eca Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-75433,75437,75445,75501,75551,75572,75589-75591,75657,75742,75868,75952-75957,76057,76105,76139,76143,76162,76223 via svnmerge from 17 years ago
Benjamin Peterson aeaa592516 Merged revisions 76230 via svnmerge from 17 years ago
Skip Montanaro ba1e0f46ab Issue 7147 - remove ability to attempt to build Python without complex number support (was broken anyway) 17 years ago
Benjamin Peterson d76c8da098 Merged revisions 73623-73624 via svnmerge from 17 years ago
Benjamin Peterson 0289b15820 Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from 17 years ago
Brett Cannon e3944a5e1e The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)! 17 years ago
Benjamin Peterson f5b52246ed ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626 17 years ago
Kristján Valur Jónsson 19288c247a Fix an issue in the tokenizer, where a file is opened by fd, but the underlying PyFileIO object wasn created with the closefd attribute true. 17 years ago
Brett Cannon da78043237 Latin-1 source code was not being properly decoded when passed through 18 years ago
Amaury Forgeot d'Arc cf8016a8d6 Issues #2384 and #3975: Tracebacks were not correctly printed when the source file 18 years ago
Amaury Forgeot d'Arc 9252287f2c Follow-up of #3773: In PyTokenizer_FindEncoding, remove the call to PyErr_NoMemory when PyMem_MALLOC() fails. 18 years ago
Amaury Forgeot d'Arc 1b933ed50a #3773: Check for errors around the use of PyTokenizer_FindEncoding(). 18 years ago
Brett Cannon 8a9583ec5c PyTokenizer_FindEncoding() always failed because it set the tokenizer state 18 years ago
Marc-André Lemburg 4cc0f24857 Rename PyUnicode_AsString -> _PyUnicode_AsString and 18 years ago
Christian Heimes 2c9c7a5f33 Renamed files bytesobject.[ch] and stringobject.[ch] 18 years ago
Christian Heimes 72b710a596 Renamed PyString to PyBytes 18 years ago
Christian Heimes 9c4756ea26 Renamed PyBytes to PyByteArray 18 years ago
Christian Heimes 81ee3efede Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from 18 years ago
Christian Heimes bbe741dd1b Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge from 18 years ago
Martin v. Löwis 2593146227 Bug #2301: Don't try decoding the source code into the original 18 years ago
Christian Heimes 412dc9c88f Merged revisions 60350-60363 via svnmerge from 18 years ago
Christian Heimes 1af737cd1e Merged revisions 60176-60209 via svnmerge from 18 years ago
Georg Brandl 86def6cb2b Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge from 18 years ago
Georg Brandl fceab5a385 Merged revisions 60080-60089,60091-60093 via svnmerge from 18 years ago
Christian Heimes 819b8bf403 More PyImport_ImportModule -> PyImport_ImportModuleNoBlock 18 years ago
Christian Heimes 90aa7646af #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. 18 years ago
Amaury Forgeot d'Arc af59346f1a Problem found while converting from PyBytes to PyString: 19 years ago
Guido van Rossum cf171a7fbc Cleanup of tokenizer.c. 19 years ago
Amaury Forgeot d'Arc 65f9aced6e Correction for issue1134: all source files with a coding spec, except latin-1 19 years ago
Guido van Rossum 98297ee781 Merging the py3k-pep3137 branch back into the py3k branch. 19 years ago
Guido van Rossum 40d20bcf1f Issue 1267, continued. 19 years ago
Brett Cannon c2954e5273 Make sure the malloc'ed string has space for the null byte. 19 years ago
Brett Cannon e453989f2e Fix PyTokenizer_FindEncoding() for OS X 10.4. Turns out that seeking to the 19 years ago