1. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  2. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  3. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  4. bdde011 Remove support for u"..." literals. by Guido van Rossum · 17 years ago
  5. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  6. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  7. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  8. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  9. 71011e2 Allow decorators and return annotations to be used together (fixes SF#1697248) by Nick Coghlan · 17 years ago
  10. 4d2adcc Make it compile with C89. by Guido van Rossum · 17 years ago
  11. 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 17 years ago
  12. e66c8c7 "from ... import x" should not be a syntax error... make by Georg Brandl · 17 years ago
  13. dde0028 Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis. by Georg Brandl · 17 years ago
  14. 52cc1d8 Implement PEP 3115 -- new metaclass syntax and semantics. by Guido van Rossum · 17 years ago
  15. 81e9502 Provisional implementation of PEP 3104. by Jeremy Hylton · 17 years ago
  16. 6baa4c4 Whoops, fix build breakage. There were still a few uses of the bool type. by Neal Norwitz · 17 years ago
  17. 00e41de Bytes literal. by Thomas Wouters · 18 years ago
  18. 452bf51 Essential changes for print function changes. by Guido van Rossum · 18 years ago
  19. 16be03e Some more changes related to the new except syntax and semantics, by Guido van Rossum · 18 years ago
  20. c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
  21. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  22. 4f72a78 Jiwon Seo's PEP 3102 implementation. by Guido van Rossum · 18 years ago
  23. 52318d6 Patch #1550786: ellipsis literal. by Georg Brandl · 18 years ago
  24. 7cae87c Patch #1550800: make exec a function. by Georg Brandl · 18 years ago
  25. 86e58e2 SF patch 1547796 by Georg Brandl -- set literals. by Guido van Rossum · 18 years ago
  26. e2e23ef Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up the by Brett Cannon · 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. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  30. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  31. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  32. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  33. 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 18 years ago
  34. 49c5da1 Patch #1440601: Add col_offset attribute to AST nodes. by Martin v. Löwis · 18 years ago
  35. 65b3dab Fix uninitialized value. (Why are we using bools instead of ints, like we do by Thomas Wouters · 18 years ago
  36. 8ae1295 Make 'as' an actual keyword when with's future statement is used. Not by Thomas Wouters · 18 years ago
  37. a829313 Remove asdl_seq_APPEND() and simplify asdl seq implementation. by Jeremy Hylton · 18 years ago
  38. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  39. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 18 years ago
  40. c7d3726 Fix parsing of subscriptlist. by Jeremy Hylton · 18 years ago
  41. 8622e93 And some more cleanup. by Thomas Wouters · 18 years ago
  42. 106203c Clean up from-import handling. by Thomas Wouters · 18 years ago
  43. 9ebfbf0 Simplify ast_for_trailer() in anticipation of more changes. by Jeremy Hylton · 18 years ago
  44. aa8b6c5 Fix old not-reading-pep-308-right artifact. by Thomas Wouters · 18 years ago
  45. fa443cd Fix assertion errors in debug build, brought on by PEP 308 patch. by Thomas Wouters · 18 years ago
  46. dca3b9c PEP 308 implementation, including minor refdocs and some testcases. It by Thomas Wouters · 18 years ago
  47. 96e48d4 Use C-style comment by Neal Norwitz · 19 years ago
  48. c960f26 Improved handling of syntax errors. by Jeremy Hylton · 19 years ago
  49. e93e64f Repair bizarre indentation created by VC 7.1. by Tim Peters · 19 years ago
  50. 5db42c4 alias_for_import_name(): Dueling compiler warnings ;-) by Tim Peters · 19 years ago
  51. 46b7bda Fix icc warnings: conversion from "long" to "int" may lose significant bits by Neal Norwitz · 19 years ago
  52. 406c640 Fix icc warnings: shadowing local variables by Neal Norwitz · 19 years ago
  53. 24f0fa9 SF#1391872 by Fredrik Lundh · 19 years ago
  54. 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
  55. 84456bd Cleanup a bit and make things more consistent. by Neal Norwitz · 19 years ago
  56. f599f42 SF patch #1355913, PEP 341 - Unification of try/except and try/finally by Neal Norwitz · 19 years ago
  57. adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
  58. f8d403d SF #1377897, Bus error in ast by Neal Norwitz · 19 years ago
  59. 8ad64aa SF #1370197, memory leak - ast_error_finish (in error conditions). by Neal Norwitz · 19 years ago
  60. e536892 Remove unnecessary extern variable by Neal Norwitz · 19 years ago
  61. 7bcabc6 Fix a few more memory leaks by Neal Norwitz · 19 years ago
  62. a3fd07d add more doc by Neal Norwitz · 19 years ago
  63. 6b34789 Fix another memory leak or two (one real, one potential) by Neal Norwitz · 19 years ago
  64. af8f974 Add a note about how to do the memory deallocation a bit. by Neal Norwitz · 19 years ago
  65. e76adcd Fix a whole bunch of potential memory leaks (and some real ones too) by Neal Norwitz · 19 years ago
  66. 7979265 Convert all internal errors from Exception to SystemError by Neal Norwitz · 19 years ago
  67. e8c0536 Fix memory leak with bad generator expression by Neal Norwitz · 19 years ago
  68. 7b3d5e1 remove useless debug print helper. fix a couple of exceptions by Neal Norwitz · 19 years ago
  69. 982e8d6 Refactor code for translating "power" nodes. by Neil Schemenauer · 19 years ago
  70. c5dd10a Write a separate ast_for_testlist_gexp() function instead of overloading by Neil Schemenauer · 19 years ago
  71. 147b759 Add an assert. by Neil Schemenauer · 19 years ago
  72. 3144130 ANSI-C-ify the placement of local var declarations. by Armin Rigo · 19 years ago
  73. 57071ce Oops, "=" is not a comparison operator by Neal Norwitz · 19 years ago
  74. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago