1. ce3a72a Patch 1267 by Christian Heimes. by Guido van Rossum · 17 years ago
  2. df4ce10 Fix another stray PyString reference that should be PyBytes; and its comment. by Guido van Rossum · 17 years ago
  3. 641591c Fix an issue in PyTokenizer_RestoreEncoding() which was treating a PyBytes by Guido van Rossum · 17 years ago
  4. 3f993c3 Use an enum for decoding_state. It makes the code a little more understandable. by Neil Schemenauer · 17 years ago
  5. 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago
  6. 85bcc66 Convert code from sys.stdin.encoding to UTF-8 in interactive mode. Fixes #1100. by Martin v. Löwis · 17 years ago
  7. 21b731f Fix an outdated URL in a SyntaxError message. by Guido van Rossum · 17 years ago
  8. e3e3701 Fix issue # 1037 (sort of). by Guido van Rossum · 17 years ago
  9. 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 17 years ago
  10. 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
  11. 41eaedd Fix refleaks from execfile('file that contains a # coding: line') by Neal Norwitz · 17 years ago
  12. f7f28fc Fix problem when exec'ing a string with a coding by Neal Norwitz · 17 years ago
  13. 447d33e Implement PEP 3120. by Martin v. Löwis · 17 years ago
  14. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  15. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  16. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  17. 9cbfffd tokenizer.c: make coding markup work again. by Guido van Rossum · 17 years ago
  18. ccf4f0f Use AsCharBuffer to get a C string out of a Python string. by Guido van Rossum · 17 years ago
  19. e5e80b8 Kill u"..." string quotes. Thought I already did that. by Guido van Rossum · 17 years ago
  20. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  21. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  22. dde0028 Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis. by Georg Brandl · 17 years ago
  23. 00e41de Bytes literal. by Thomas Wouters · 17 years ago
  24. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 17 years ago
  25. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  26. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  27. cf588f6 Remove support for backticks from the grammar and compiler. by Brett Cannon · 18 years ago
  28. b053cd8 Killed the <> operator. You must now use !=. by Guido van Rossum · 18 years ago
  29. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  30. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  31. 6caa07b Make 'python -tt' the default, meaning Python won't allow mixing tabs and by Thomas Wouters · 18 years ago
  32. 7eaf2aa Fix crashing bug in tokenizer, when tokenizing files with non-ASCII bytes by Thomas Wouters · 18 years ago
  33. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  34. 6cba256 Change non-ASCII warning into a SyntaxError. by Martin v. Löwis · 18 years ago
  35. f5adf1e Use Py_ssize_t to count the length. by Martin v. Löwis · 18 years ago
  36. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  37. 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
  38. db83eb3 Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. by Neal Norwitz · 19 years ago
  39. dee2fd5 Fix some more memory leaks. by Neal Norwitz · 19 years ago
  40. c0d5faa Free coding spec (cs) if there was an error to prevent mem leak. Maybe backport candidate by Neal Norwitz · 19 years ago
  41. 40d3781 - Fix segfault with invalid coding. by Neal Norwitz · 19 years ago
  42. c1f5fff Apply SF patch #1101726: Fix buffer overrun in tokenizer.c when a source file by Walter Dörwald · 19 years ago
  43. 4bf108d Patch #802188: better parser error message for non-EOL following line cont. by Martin v. Löwis · 19 years ago
  44. 7df44b3 SF #941229: Decode source code with sys.stdin.encoding in interactive by Hye-Shik Chang · 20 years ago
  45. c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
  46. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  47. 1fb1400 Add URL for PEP to the source code encoding warning. by Marc-André Lemburg · 21 years ago
  48. f032f86 patch 680474 that fixes bug 679880: compile/eval/exec refused utf-8 bom by Just van Rossum · 21 years ago
  49. a2e303c Fix [ 665014 ] files with long lines and an encoding crash. by Mark Hammond · 21 years ago
  50. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  51. e08e1bc Fix compiler warning on HP-UX. Cast param to isalnum() to int. by Neal Norwitz · 22 years ago
  52. 566f6af Patch #512981: Update readline input stream on sys.stdin/out change. by Martin v. Löwis · 22 years ago
  53. 17db21f Removed reliance on gcc/C99 extension. by Tim Peters · 22 years ago
  54. f62a89b Ignore encoding declarations inside strings. Fixes #603509. by Martin v. Löwis · 22 years ago
  55. 84b2bed Squash a few calls to the hideously expensive PyObject_CallObject(o,a) by Guido van Rossum · 22 years ago
  56. 118ec70 provide less mysterious error messages when seeing end-of-line in by Skip Montanaro · 22 years ago
  57. 2863c10 Use Py_FatalError instead of abort. by Martin v. Löwis · 22 years ago
  58. 019934b Fix PEP 263 code --without-unicode. Fixes #591943. by Martin v. Löwis · 22 years ago
  59. cf0a2cf Added a cast to shut up a compiler warning. by Jack Jansen · 22 years ago
  60. 725bb23 Add 1 to lineno in deprecation warning. Fixes #590888. by Martin v. Löwis · 22 years ago
  61. 1ee99d3 Make pgen compile with pydebug. Duplicate normalized names, as it may by Martin v. Löwis · 22 years ago
  62. cd280fb Group statements properly. by Martin v. Löwis · 22 years ago
  63. 2c3f9c6 Repaired a fatal compiler error in the debug build: it's not clear what by Tim Peters · 22 years ago
  64. 919603b Squash compiler wng about signed-vs-unsigned mismatch. by Tim Peters · 22 years ago
  65. 00f1e3f Patch #534304: Implement phase 1 of PEP 263. by Martin v. Löwis · 22 years ago
  66. 7b8c754 Mass checkin of universal newline support. by Jack Jansen · 22 years ago
  67. d507dab SF patch #455966: Allow leading 0 in float/imag literals. by Tim Peters · 23 years ago
  68. 9aa70d9 SF bug [#455775] float parsing discrepancy. by Tim Peters · 23 years ago
  69. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  70. cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 23 years ago
  71. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  72. 434d082 Support for three-token characters (**=, >>=, <<=) which was written by by Thomas Wouters · 24 years ago
  73. 23c9e00 Mass ANSIfication. by Thomas Wouters · 24 years ago
  74. 85f3639 Create two new exceptions: IndentationError and TabError. These are by Fred Drake · 24 years ago
  75. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  76. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  77. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  78. 6da3434 Trent Mick: familiar simple Win64 patches by Guido van Rossum · 24 years ago
  79. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  80. 6c981ad Only write message about changed Tab size with -v. by Guido van Rossum · 24 years ago
  81. ab5ca15 Fix by Eric Raymond: make the code that looks for various bits of by Guido van Rossum · 24 years ago
  82. 86016cb Marc-Andre Lemburg: add new string token types u"..." and ur"..." by Guido van Rossum · 24 years ago
  83. d5516bc One more fprintf bites the dist -- use PySys_WriteStderr by Guido van Rossum · 26 years ago
  84. 6e73bf4 Replace all calls to fprintf(stderr, ...) with PySys_WriteStderr(...). by Guido van Rossum · 26 years ago
  85. 926f13a Add checking for inconsistent tab usage by Guido van Rossum · 26 years ago
  86. 54758fa Swap two statements in the dedent check loop. This makes absolutely by Guido van Rossum · 26 years ago
  87. 3568524 Fixed the bug in searching for triple quotes -- change the 'quote2' by Guido van Rossum · 26 years ago
  88. cf57d8b tok_nextc() should return unsigned characters, to avoid mistaking by Guido van Rossum · 26 years ago
  89. 86bea46 Another directory quickly renamed. by Guido van Rossum · 27 years ago
  90. 5026cb4 Now that the string-sig has settled on r"obin" strings, restrict the by Guido van Rossum · 27 years ago
  91. 2d45be1 (Jack:) On the Mac, give syntax error on \r. by Guido van Rossum · 27 years ago
  92. 24dacb3 Support for alternative string quotes (a"xx", b"xx", c"xx", ...). by Guido van Rossum · 27 years ago
  93. 408027e Rename DEBUG macro to Py_DEBUG by Guido van Rossum · 28 years ago
  94. fd8a393 Make gcc -Wall happy by Guido van Rossum · 28 years ago
  95. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  96. faa436c use only j for imaginary constants by Guido van Rossum · 28 years ago
  97. f595fde changes for pow(**) and complex by Guido van Rossum · 28 years ago
  98. 3f6bb86 fix bogus resize length in nextc by Guido van Rossum · 29 years ago
  99. 94d32b1 ignore control-l in whitespace by Guido van Rossum · 29 years ago
  100. 2e96eb9 replace "\r\n" with "\n" at line end (Jim Ahlstrom) by Guido van Rossum · 29 years ago