1. 9cbfffd tokenizer.c: make coding markup work again. by Guido van Rossum · 17 years ago
  2. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  3. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  4. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  5. ccf4f0f Use AsCharBuffer to get a C string out of a Python string. by Guido van Rossum · 17 years ago
  6. e5e80b8 Kill u"..." string quotes. Thought I already did that. by Guido van Rossum · 17 years ago
  7. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  8. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  9. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  10. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  11. dde0028 Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis. by Georg Brandl · 17 years ago
  12. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  13. 81e9502 Provisional implementation of PEP 3104. by Jeremy Hylton · 17 years ago
  14. 3591bbe bool is no longer required, it was only used for the print statement by Neal Norwitz · 17 years ago
  15. a44f3a3 Merged revisions 53912-53951 via svnmerge from by Thomas Wouters · 17 years ago
  16. 8b4a3e8 Touch file to regenerate Python-ast.[ch] by Thomas Wouters · 17 years ago
  17. 00e41de Bytes literal. by Thomas Wouters · 17 years ago
  18. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  19. 88fc664 * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes. by Georg Brandl · 17 years ago
  20. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 18 years ago
  21. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  22. 16be03e Some more changes related to the new except syntax and semantics, by Guido van Rossum · 18 years ago
  23. 34e4f52 avoid dict.has_key, since this might get used by a Py3K built in the by Fred Drake · 18 years ago
  24. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  25. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  26. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  27. 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 18 years ago
  28. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  29. 86e58e2 SF patch 1547796 by Georg Brandl -- set literals. by Guido van Rossum · 18 years ago
  30. e2e23ef Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the by Brett Cannon · 18 years ago
  31. cf588f6 Remove support for backticks from the grammar and compiler. by Brett Cannon · 18 years ago
  32. f036551 Switch to using %r in the format string. by Brett Cannon · 18 years ago
  33. 0e1cff5 Get rid of all two uses of backticks (bad Jeremy!). by Brett Cannon · 18 years ago
  34. b053cd8 Killed the <> operator. You must now use !=. by Guido van Rossum · 18 years ago
  35. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  36. 73e5a5b Merge the rest of the trunk. by Thomas Wouters · 18 years ago
  37. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  38. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  39. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  40. 6caa07b Make 'python -tt' the default, meaning Python won't allow mixing tabs and by Thomas Wouters · 18 years ago
  41. fc85c92 Get rid of compiler warning by Neal Norwitz · 18 years ago
  42. e4993c7 Get rid of compiler warning about with_msg and as_msg being unused by Neal Norwitz · 18 years ago
  43. 45aecf4 Checkpoint. 218 tests are okay; 53 are failing. Done so far: by Guido van Rossum · 18 years ago
  44. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  45. 7eaf2aa Fix crashing bug in tokenizer, when tokenizing files with non-ASCII bytes by Thomas Wouters · 18 years ago
  46. 03e5bc0 Fix memory leak on attributes. by Martin v. Löwis · 18 years ago
  47. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  48. 66485ae Remove unused field. by Martin v. Löwis · 18 years ago
  49. 53d960c Don't pollute namespace as bad as before. All the types are static now. by Neal Norwitz · 18 years ago
  50. 8ae1295 Make 'as' an actual keyword when with's future statement is used. Not by Thomas Wouters · 18 years ago
  51. 6cba256 Change non-ASCII warning into a SyntaxError. by Martin v. Löwis · 18 years ago
  52. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 18 years ago
  53. 710ab3b Whitespace normalization. by Tim Peters · 18 years ago
  54. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  55. b003f04 Generate return statement. by Martin v. Löwis · 18 years ago
  56. 40d8459 Add generation of the version. by Martin v. Löwis · 18 years ago
  57. eae93b7 Add support for version field on Modules by Martin v. Löwis · 18 years ago
  58. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 18 years ago
  59. 577b5b9 Create _ast module. Cleanup Python-ast.c generation. by Martin v. Löwis · 18 years ago
  60. dca3b9c PEP 308 implementation, including minor refdocs and some testcases. It by Thomas Wouters · 18 years ago
  61. d3a5f53 Avoid reinitializing the types twice. by Martin v. Löwis · 18 years ago
  62. 8d0701d Stop generating empty arrays. by Martin v. Löwis · 18 years ago
  63. ce1d5d2 Fix iterating over cmpop_ty lists. by Martin v. Löwis · 18 years ago
  64. bd260da Generate code to recursively copy an AST into 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. a87c445 Remove C99ism. by Martin v. Löwis · 18 years ago
  67. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  68. c960f26 Improved handling of syntax errors. by Jeremy Hylton · 19 years ago
  69. 46aae19 Revert previous checkin, the check is for <, not ==. i is unsed in non-debug builds, but is used in debug builds by Neal Norwitz · 19 years ago
  70. 056a2d6 Fix icc warnings. This couldn't have been correct since i is checked by Neal Norwitz · 19 years ago
  71. 536cf99 Whitespace normalization. by Tim Peters · 19 years ago
  72. 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
  73. db83eb3 Fix Bug #1378022, UTF-8 files with a leading BOM crashed the interpreter. by Neal Norwitz · 19 years ago
  74. adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
  75. 6b1793f When regenerating files like Python-ast.h, take care that the generated by Armin Rigo · 19 years ago
  76. 897ff81 SF #1373150, diffs in working copy after a build by Neal Norwitz · 19 years ago
  77. dee2fd5 Fix some more memory leaks. by Neal Norwitz · 19 years ago
  78. 56c6561 Prevent unlikely memory leak, tok should always be freed when parsetok() returns by Neal Norwitz · 19 years ago
  79. 19b0f40 Thou shalt not lie, there are really 5 types now by Neal Norwitz · 19 years ago
  80. 7b5a604 Whoops, checkin consistent versions of *all* files to stop polluting by Neal Norwitz · 19 years ago
  81. 6576bd8 Prevent name pollution by making lots of internal functions static. by Neal Norwitz · 19 years ago
  82. ab0f947 Remove .cvsignore files, as they live in svn:ignore properties now. by Martin v. Löwis · 19 years ago
  83. a34584b Use PyErr_NoMemory() instead of rolling our own. by Neal Norwitz · 19 years ago
  84. c0d5faa Free coding spec (cs) if there was an error to prevent mem leak. Maybe backport candidate by Neal Norwitz · 19 years ago
  85. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  86. 40d3781 - Fix segfault with invalid coding. by Neal Norwitz · 19 years ago
  87. c1f5fff Apply SF patch #1101726: Fix buffer overrun in tokenizer.c when a source file by Walter Dörwald · 19 years ago
  88. e3afc59 In a threads-disabled build, typing Ctrl-C into a raw_input() crashed, by Michael W. Hudson · 19 years ago
  89. 4bf108d Patch #802188: better parser error message for non-EOL following line cont. by Martin v. Löwis · 19 years ago
  90. 9ceaa72 Patch #975056 - fixes for restartable signals on *BSD. In addition, by Anthony Baxter · 20 years ago
  91. 7df44b3 SF #941229: Decode source code with sys.stdin.encoding in interactive by Hye-Shik Chang · 20 years ago
  92. c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
  93. 2384990 PyThreadState_Swap(NULL) didn't do what I thought it did. Fixes by Michael W. Hudson · 20 years ago
  94. 4ded4b5 Pass the flags along, rather than ignoring them. Backport candidate by Neal Norwitz · 20 years ago
  95. b7e898a "#if WITH_THREAD" is incorrect; must be #ifdef instead; WITH_THREAD by Tim Peters · 20 years ago
  96. 30ea2f2 This closes patch: by Michael W. Hudson · 20 years ago
  97. 93b4b88 [Patch #974633] Check PyObject_MALLOC return for error by Andrew M. Kuchling · 20 years ago
  98. c696617 Fix for SF 780407. Change %08l to %p to print a pointer. Will backport to 2.3. by Guido van Rossum · 20 years ago
  99. db60805 Remove support for --without-universal-newlines (see PEP 11). by Skip Montanaro · 21 years ago
  100. bd311d8 Remove a "temporary" piece of code that was probably unneeded since by Guido van Rossum · 21 years ago