1. 8170e8c PEP 479: Change StopIteration handling inside generators. by Yury Selivanov · 9 years ago
  2. 3a90797 Issue #19722: Added opcode.stack_effect(), which accurately by Larry Hastings · 11 years ago
  3. 14e461d Close #11619: The parser and the import machinery do not encode Unicode by Victor Stinner · 11 years ago
  4. 2bdc7f5 Move code related to compile from Python.h to compile.h by Victor Stinner · 13 years ago
  5. 0d71116 Issue #9738: Ooops, fix typos in my previous commit (r87506) by Victor Stinner · 13 years ago
  6. 00676d1 Issue #9738: Document encodings of AST, compiler, parser and PyRun functions by Victor Stinner · 13 years ago
  7. 8334fd9 Add an "optimize" parameter to compile() to control the optimization level, and provide an interface to it in py_compile, compileall and PyZipFile. by Georg Brandl · 14 years ago
  8. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  9. e3944a5 The BDFL has retired! Long live the FLUFL (Friendly Language Uncle For Life)! by Brett Cannon · 15 years ago
  10. c0747cf Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via svnmerge from by Benjamin Peterson · 16 years ago
  11. 4d6ec85 Merged revisions 61952-61953 via svnmerge from by Christian Heimes · 16 years ago
  12. 8782408 Add __future__ import for print_function. It's a no-op in 3.0, but it needs to not be a syntax error. by Eric Smith · 16 years ago
  13. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  14. ca82a8b Move #include to outside "extern C {}", before Tim figures out it'll break VC++. by Thomas Wouters · 18 years ago
  15. e4d3a72 Include code.h more sanely. by Thomas Wouters · 18 years ago
  16. 34aa7ba from __future__ import with_statement addon for 'with', mostly written by Neal. by Thomas Wouters · 18 years ago
  17. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  18. adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
  19. 38eb50b use PyAPI_FUNC instead of DL_IMPORT. are we going to deprecate the old non-Py PREFIXED macros, etc? by Neal Norwitz · 19 years ago
  20. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  21. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  22. ecfeb7f This is my patch #876198 plus a NEWS entry and a header frob. by Michael W. Hudson · 20 years ago
  23. 985eba5 Small function call optimization and special build option for call stats. by Jeremy Hylton · 21 years ago
  24. 95292d6 Constify filenames and scripts. Fixes #651362. by Martin v. Löwis · 22 years ago
  25. 91a681d Excise DL_EXPORT from Include. by Mark Hammond · 22 years ago
  26. 2bbdba3 Removed more hair in support of future-generator stmts. by Tim Peters · 22 years ago
  27. 12ce485 Add helper macro to get the number of free variables for a PyCodeObject. by Jeremy Hylton · 23 years ago
  28. fdd12f6 Refactor future feature handling by Jeremy Hylton · 23 years ago
  29. 4668b00 Implement PEP 238 in its (almost) full glory. by Guido van Rossum · 23 years ago
  30. 5ba5866 Part way to allowing "from __future__ import generators" to communicate by Tim Peters · 23 years ago
  31. b09f7ed Preliminary support for "from __future__ import generators" to enable by Guido van Rossum · 23 years ago
  32. aa31429 Enable nested scopes by default. by Guido van Rossum · 23 years ago
  33. 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 23 years ago
  34. 061d106 If a code object is compiled with nested scopes, define the CO_NESTED flag. by Jeremy Hylton · 23 years ago
  35. 9f324e9 Useful future statement support for the interactive interpreter by Jeremy Hylton · 23 years ago
  36. 39e2f3f Presumed correct compiler pass for future statements by Jeremy Hylton · 23 years ago
  37. 4db62b1 Improved __future__ parser; still more to do by Jeremy Hylton · 23 years ago
  38. 29906ee Preliminary support for future nested scopes by Jeremy Hylton · 23 years ago
  39. 64949cb PEP 227 implementation by Jeremy Hylton · 23 years ago
  40. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  41. ea9cb5a ANSI-fication and Py_PROTO extermination. by Fred Drake · 24 years ago
  42. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  43. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  44. 43466ec Add DL_IMPORT(returntype) for all officially exported functions. by Guido van Rossum · 26 years ago
  45. d076c73 Changes to support other object types besides strings by Guido van Rossum · 26 years ago
  46. 7675798 Add co_firstlineno and co_lnotab, for the line number table generated by Guido van Rossum · 27 years ago
  47. 3f6e408 Add co_stacksize field to codeobject structure, and stacksize argument by Guido van Rossum · 27 years ago
  48. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  49. 884afd6 keyword arguments and faster function calls by Guido van Rossum · 29 years ago
  50. 051ab12 make the type a parameter of the DL_IMPORT macro, for Borland C by Guido van Rossum · 29 years ago
  51. caa6380 The great renaming, phase two: all header files have been updated to by Guido van Rossum · 29 years ago
  52. 5799b52 Added 1995 copyright. by Guido van Rossum · 29 years ago
  53. e89bc75 Changes for dynamic linking under NT by Guido van Rossum · 30 years ago
  54. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  55. 590baa4 * import.c (get_module): pass .py filename to parse_file, not .pyc filename! by Guido van Rossum · 31 years ago
  56. 12d12c5 * compile.[ch]: support for lambda() by Guido van Rossum · 31 years ago
  57. a330996 * Added support for X11 modules. by Guido van Rossum · 31 years ago
  58. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  59. 5113f5f Copyright for 1992 added by Guido van Rossum · 32 years ago
  60. 4ed1ad5 Export newcodeobject() interface. by Guido van Rossum · 33 years ago
  61. e543a94 Satisfy Standard C rules about struct scope. by Guido van Rossum · 33 years ago
  62. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  63. 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago