1. d76c8da Merged revisions 73623-73624 via svnmerge from by Benjamin Peterson · 15 years ago
  2. e3944a5 The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)! by Brett Cannon · 15 years ago
  3. f5b5224 ignore the coding cookie in compile(), exec(), and eval() if the source is a string #4626 by Benjamin Peterson · 15 years ago
  4. 19288c2 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. by Kristján Valur Jónsson · 16 years ago
  5. da78043 Latin-1 source code was not being properly decoded when passed through by Brett Cannon · 16 years ago
  6. cf8016a Issues #2384 and #3975: Tracebacks were not correctly printed when the source file by Amaury Forgeot d'Arc · 16 years ago
  7. 9252287 Follow-up of #3773: In PyTokenizer_FindEncoding, remove the call to PyErr_NoMemory when PyMem_MALLOC() fails. by Amaury Forgeot d'Arc · 16 years ago
  8. 1b933ed #3773: Check for errors around the use of PyTokenizer_FindEncoding(). by Amaury Forgeot d'Arc · 16 years ago
  9. 8a9583e PyTokenizer_FindEncoding() always failed because it set the tokenizer state by Brett Cannon · 16 years ago
  10. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  11. 2c9c7a5 Renamed files bytesobject.[ch] and stringobject.[ch] Fixed Windows build by Christian Heimes · 16 years ago
  12. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  13. 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
  14. 81ee3ef 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 by Christian Heimes · 16 years ago
  15. bbe741d Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge from by Christian Heimes · 16 years ago
  16. 2593146 Bug #2301: Don't try decoding the source code into the original by Martin v. Löwis · 16 years ago
  17. 412dc9c Merged revisions 60350-60363 via svnmerge from by Christian Heimes · 16 years ago
  18. 1af737c Merged revisions 60176-60209 via svnmerge from by Christian Heimes · 16 years ago
  19. 86def6c Merged revisions 60151-60159,60161-60168,60170,60172-60173,60175 via svnmerge from by Georg Brandl · 16 years ago
  20. fceab5a Merged revisions 60080-60089,60091-60093 via svnmerge from by Georg Brandl · 16 years ago
  21. 819b8bf More PyImport_ImportModule -> PyImport_ImportModuleNoBlock by Christian Heimes · 17 years ago
  22. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  23. af59346 Problem found while converting from PyBytes to PyString: by Amaury Forgeot d'Arc · 17 years ago
  24. cf171a7 Cleanup of tokenizer.c. by Guido van Rossum · 17 years ago
  25. 65f9ace Correction for issue1134: all source files with a coding spec, except latin-1 by Amaury Forgeot d'Arc · 17 years ago
  26. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  27. 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
  28. c2954e5 Make sure the malloc'ed string has space for the null byte. by Brett Cannon · 17 years ago
  29. e453989 Fix PyTokenizer_FindEncoding() for OS X 10.4. Turns out that seeking to the by Brett Cannon · 17 years ago
  30. d5ec98c Plug a memory leak where a struct tok_state was not being freed. by Brett Cannon · 17 years ago
  31. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  32. df4ce10 Fix another stray PyString reference that should be PyBytes; and its comment. by Guido van Rossum · 17 years ago
  33. 641591c Fix an issue in PyTokenizer_RestoreEncoding() which was treating a PyBytes by Guido van Rossum · 17 years ago
  34. 3f993c3 Use an enum for decoding_state. It makes the code a little more understandable. by Neil Schemenauer · 17 years ago
  35. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  36. 85bcc66 Convert code from sys.stdin.encoding to UTF-8 in interactive mode. Fixes #1100. by Martin v. Löwis · 17 years ago
  37. 21b731f Fix an outdated URL in a SyntaxError message. by Guido van Rossum · 17 years ago
  38. e3e3701 Fix issue # 1037 (sort of). by Guido van Rossum · 17 years ago
  39. 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 17 years ago
  40. 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
  41. 41eaedd Fix refleaks from execfile('file that contains a # coding: line') by Neal Norwitz · 17 years ago
  42. f7f28fc Fix problem when exec'ing a string with a coding by Neal Norwitz · 17 years ago
  43. 447d33e Implement PEP 3120. by Martin v. Löwis · 17 years ago
  44. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  45. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  46. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  47. 9cbfffd tokenizer.c: make coding markup work again. by Guido van Rossum · 17 years ago
  48. ccf4f0f Use AsCharBuffer to get a C string out of a Python string. by Guido van Rossum · 17 years ago
  49. e5e80b8 Kill u"..." string quotes. Thought I already did that. by Guido van Rossum · 17 years ago
  50. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  51. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  52. dde0028 Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis. by Georg Brandl · 17 years ago
  53. 00e41de Bytes literal. by Thomas Wouters · 17 years ago
  54. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  55. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  56. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  57. cf588f6 Remove support for backticks from the grammar and compiler. by Brett Cannon · 18 years ago
  58. b053cd8 Killed the <> operator. You must now use !=. by Guido van Rossum · 18 years ago
  59. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  60. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  61. 6caa07b Make 'python -tt' the default, meaning Python won't allow mixing tabs and by Thomas Wouters · 18 years ago
  62. 7eaf2aa Fix crashing bug in tokenizer, when tokenizing files with non-ASCII bytes by Thomas Wouters · 18 years ago
  63. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  64. 6cba256 Change non-ASCII warning into a SyntaxError. by Martin v. Löwis · 18 years ago
  65. f5adf1e Use Py_ssize_t to count the length. by Martin v. Löwis · 18 years ago
  66. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  67. 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
  68. db83eb3 Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. by Neal Norwitz · 19 years ago
  69. dee2fd5 Fix some more memory leaks. by Neal Norwitz · 19 years ago
  70. c0d5faa Free coding spec (cs) if there was an error to prevent mem leak. Maybe backport candidate by Neal Norwitz · 19 years ago
  71. 40d3781 - Fix segfault with invalid coding. by Neal Norwitz · 19 years ago
  72. c1f5fff Apply SF patch #1101726: Fix buffer overrun in tokenizer.c when a source file by Walter Dörwald · 19 years ago
  73. 4bf108d Patch #802188: better parser error message for non-EOL following line cont. by Martin v. Löwis · 19 years ago
  74. 7df44b3 SF #941229: Decode source code with sys.stdin.encoding in interactive by Hye-Shik Chang · 20 years ago
  75. c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
  76. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  77. 1fb1400 Add URL for PEP to the source code encoding warning. by Marc-André Lemburg · 21 years ago
  78. f032f86 patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bom by Just van Rossum · 21 years ago
  79. a2e303c Fix [ 665014 ] files with long lines and an encoding crash. by Mark Hammond · 22 years ago
  80. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  81. e08e1bc Fix compiler warning on HP-UX. Cast param to isalnum() to int. by Neal Norwitz · 22 years ago
  82. 566f6af Patch #512981: Update readline input stream on sys.stdin/out change. by Martin v. Löwis · 22 years ago
  83. 17db21f Removed reliance on gcc/C99 extension. by Tim Peters · 22 years ago
  84. f62a89b Ignore encoding declarations inside strings. Fixes #603509. by Martin v. Löwis · 22 years ago
  85. 84b2bed Squash a few calls to the hideously expensive PyObject_CallObject(o,a) by Guido van Rossum · 22 years ago
  86. 118ec70 provide less mysterious error messages when seeing end-of-line in by Skip Montanaro · 22 years ago
  87. 2863c10 Use Py_FatalError instead of abort. by Martin v. Löwis · 22 years ago
  88. 019934b Fix PEP 263 code --without-unicode. Fixes #591943. by Martin v. Löwis · 22 years ago
  89. cf0a2cf Added a cast to shut up a compiler warning. by Jack Jansen · 22 years ago
  90. 725bb23 Add 1 to lineno in deprecation warning. Fixes #590888. by Martin v. Löwis · 22 years ago
  91. 1ee99d3 Make pgen compile with pydebug. Duplicate normalized names, as it may by Martin v. Löwis · 22 years ago
  92. cd280fb Group statements properly. by Martin v. Löwis · 22 years ago
  93. 2c3f9c6 Repaired a fatal compiler error in the debug build: it's not clear what by Tim Peters · 22 years ago
  94. 919603b Squash compiler wng about signed-vs-unsigned mismatch. by Tim Peters · 22 years ago
  95. 00f1e3f Patch #534304: Implement phase 1 of PEP 263. by Martin v. Löwis · 22 years ago
  96. 7b8c754 Mass checkin of universal newline support. by Jack Jansen · 22 years ago
  97. d507dab SF patch #455966: Allow leading 0 in float/imag literals. by Tim Peters · 23 years ago
  98. 9aa70d9 SF bug [#455775] float parsing discrepancy. by Tim Peters · 23 years ago
  99. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  100. cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 23 years ago