1. ddc4fd0 Fix 2.1 nested scopes crash reported by Evan Simpson by Jeremy Hylton · 23 years ago
  2. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  3. f68d8e5 Make some private symbols static. by Guido van Rossum · 23 years ago
  4. a830b38 Warn when assigning to __debug__ instead of raising an error. by Jeremy Hylton · 23 years ago
  5. 897b821 Make it illegal to assign to __debug__ as per Guido's request. by Jeremy Hylton · 23 years ago
  6. 2e2cded Set the line number correctly for a nested function with an exec or by Jeremy Hylton · 23 years ago
  7. 280e6bd Make error messages clearer for illegal combinations of nested by Jeremy Hylton · 23 years ago
  8. 061d106 If a code object is compiled with nested scopes, define the CO_NESTED flag. by Jeremy Hylton · 23 years ago
  9. ded4bd7 Update PyNode_CompileSymtable() to understand future statements by Jeremy Hylton · 23 years ago
  10. 220ae7c Fix PyFrame_FastToLocals() and counterpart to deal with cells and by Jeremy Hylton · 23 years ago
  11. ce7ef59 Fixup handling of free variables in methods when the class scope also by Jeremy Hylton · 23 years ago
  12. 23b4227 Fix crashes in nested list comprehensions SF bugs 409230 and 407800 by Jeremy Hylton · 23 years ago
  13. 207fda6 Refactored the warning-issuing code more. by Guido van Rossum · 23 years ago
  14. 9f324e9 Useful future statement support for the interactive interpreter by Jeremy Hylton · 23 years ago
  15. 7889107 Fix core dump in example from Samuele Pedroni: by Jeremy Hylton · 23 years ago
  16. 5125773 Don't add global names to st->st_global if we're already iterating by Jeremy Hylton · 23 years ago
  17. 3dd5ad3 undo introduction of st_global_star by Jeremy Hylton · 23 years ago
  18. c176132 Warn about global statement at the module level. by Jeremy Hylton · 23 years ago
  19. 4419ac1 Add warning/error handlin for problematic nested scopes cases as by Jeremy Hylton · 23 years ago
  20. ee34ac1 Let's have some sanity. Introduce a helper to issue a symbol table warning. by Guido van Rossum · 23 years ago
  21. 0bba7f8 Use the new PyErr_WarnExplicit() API to issue better warnings for by Guido van Rossum · 23 years ago
  22. ad3d3f2 Improve SyntaxErrors for bad future statements. Set file and location by Jeremy Hylton · 23 years ago
  23. 9f1b993 Print the offending line of code in the traceback for SyntaxErrors by Jeremy Hylton · 23 years ago
  24. 39e2f3f Presumed correct compiler pass for future statements by Jeremy Hylton · 23 years ago
  25. 4db62b1 Improved __future__ parser; still more to do by Jeremy Hylton · 23 years ago
  26. be77cf7 Add warnings about undefined "global" SF bug #233532 by Jeremy Hylton · 23 years ago
  27. 29906ee Preliminary support for future nested scopes by Jeremy Hylton · 23 years ago
  28. 1e54211 Shuffle premature decref; nuke unreachable code block. by Tim Peters · 23 years ago
  29. 0372af7 symtable_update_free_vars(), symtable_undo_free(), by Barry Warsaw · 23 years ago
  30. 74b3bc4 Fix for bug 133489: compiler leaks memory by Jeremy Hylton · 23 years ago
  31. 2b3f0ca Fix for implicit tuple + default arguments, courtesy of Michael Hudson. by Jeremy Hylton · 23 years ago
  32. 384639f When running python -O, do not include blocks defined in asserts in by Jeremy Hylton · 23 years ago
  33. 17820c4 Tolerate ill-formed trees in symtable_assign(). Fixes SF bug 132510. by Jeremy Hylton · 23 years ago
  34. 4e30378 Bug #132313 error message confusing for assignment in lambda. by Tim Peters · 23 years ago
  35. 3081421 Change temp names created by listcomps from [%d] to _[%d], so the one-liner by Tim Peters · 23 years ago
  36. d7f393e In symtable_update_free_vars() do not modify the dictionary while by Jeremy Hylton · 23 years ago
  37. 6492bf7 SF patch 103589: Fix handling of cell vars that are either * or ** parameters. by Jeremy Hylton · 23 years ago
  38. cb17ae8 Relax the rules for using 'from ... import *' and exec in the presence by Jeremy Hylton · 23 years ago
  39. cd90c20 Reindent a function that was somehow indented by 7 spaces. Also did a by Guido van Rossum · 23 years ago
  40. 5acc0c0 Fix symbol table pass to generation SyntaxError exceptions that by Jeremy Hylton · 23 years ago
  41. 4b38da6 Move a bunch of definitions that were internal to compile.c to by Jeremy Hylton · 23 years ago
  42. bbf10b5 add missing DECREF (thanks, Barry) by Jeremy Hylton · 23 years ago
  43. 3faa52e Allow 'continue' inside 'try' clause SF patch 102989 by Thomas Wouters by Jeremy Hylton · 23 years ago
  44. 483638c Undo recent change that banned using import to bind a global, as per by Jeremy Hylton · 23 years ago
  45. eab156f Enforce two illegal import statements that were outlawed in the by Jeremy Hylton · 23 years ago
  46. 2fdfadf plug leak detected by Barry by Jeremy Hylton · 23 years ago
  47. 64949cb PEP 227 implementation by Jeremy Hylton · 23 years ago
  48. a6ebc48 Fix bug reported by Ka-Ping Yee: The compiler botched parsing function by Jeremy Hylton · 23 years ago
  49. 5f827f4 Visit the initial test element of the listmaker for a list by Jeremy Hylton · 23 years ago
  50. 1113cfc prevent symtable_params() from dereferencing off the end of the by Jeremy Hylton · 23 years ago
  51. 174e801 com_init(): My entry into the smallest patch possible category. by Barry Warsaw · 23 years ago
  52. 7f3e4ad SF patch #103336: Missing cast. by Tim Peters · 23 years ago
  53. e36f778 This patch introduces an extra pass to the compiler that generates a by Jeremy Hylton · 23 years ago
  54. fc5ce61 SF Patch #103250, by pj99: Optimize a strspn() out of startup. by Guido van Rossum · 23 years ago
  55. 83fb073 Plug a memory leak in com_import_stmt(): the tuple created to hold the by Guido van Rossum · 24 years ago
  56. 102e457 SF bug 119622: compile errors due to redundant atof decls. I don't understand by Tim Peters · 24 years ago
  57. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  58. fd1f1be com_continue_stmt(): Improve error message when continue is found by Fred Drake · 24 years ago
  59. 1fa0b89 changed \x to consume exactly two hex digits. implements PEP-223 by Fredrik Lundh · 24 years ago
  60. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  61. dd13e4f Replace the run-time 'future-bytecode-stream-inspection' hack to find out by Thomas Wouters · 24 years ago
  62. e753ef8 Re-allow 'import mod.submod as s', and change its meaning to what it should by Thomas Wouters · 24 years ago
  63. 0ae722e Oops, one pop too many. by Thomas Wouters · 24 years ago
  64. b59290f Fix allowable node-types for assignment, need to add 'listmaker'. by Thomas Wouters · 24 years ago
  65. 434d082 Support for three-token characters (**=, >>=, <<=) which was written by by Thomas Wouters · 24 years ago
  66. ef8ace3 Charles G. Waldman <cgw@fnal.gov>: by Fred Drake · 24 years ago
  67. 46dfa5f require list comprehensions to start with a for clause by Skip Montanaro · 24 years ago
  68. 24703a0 com_print_stmt(): Guido rightly points out that the stream expression by Barry Warsaw · 24 years ago
  69. 29c574e PEP 214, Extended print Statement, has been accepted by the BDFL. by Barry Warsaw · 24 years ago
  70. 8bad612 Disallow "import mod.submod as m", because the result is ambiguous. Does it by Thomas Wouters · 24 years ago
  71. 73f77b4 com_error(): Quiet gcc -Wall warning. by Barry Warsaw · 24 years ago
  72. 5215225 Apply SF patch #101135, adding 'import module as m' and 'from module import by Thomas Wouters · 24 years ago
  73. b59ab42 Fix new compiler warnings. Unused var in compile.c. Argsize mismatches by Tim Peters · 24 years ago
  74. a811a5b Remove the osdefs.h #include; it was not needed in the final version of by Fred Drake · 24 years ago
  75. dcf08e0 When raising a SyntaxError, make a best-effort attempt to set the by Fred Drake · 24 years ago
  76. 87df80d The list comp patch checked for the second child node of the 'listmaker' by Thomas Wouters · 24 years ago
  77. 361852f The list comprehensions patch partly reversed the removal of UNPACK_LIST, by Thomas Wouters · 24 years ago
  78. 803d6e5 list comprehensions. see by Skip Montanaro · 24 years ago
  79. 0be5aab Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they by Thomas Wouters · 24 years ago
  80. 6c2f0c7 When returning an error from jcompile() (which is passed through by by Guido van Rossum · 24 years ago
  81. e8643c4 Fix some strange indentation and grammar that have been bugging me for weeks. by Thomas Wouters · 24 years ago
  82. f70ef4f Mass ANSIfication of function definitions. Doesn't cover all 'extern' by Thomas Wouters · 24 years ago
  83. 9a5086c just fixing the indentation by Peter Schneider-Kamp · 24 years ago
  84. 11384c6 raise error on duplicate function arguments by Peter Schneider-Kamp · 24 years ago
  85. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  86. 41aa8e5 Include limits.h if we have it. by Jack Jansen · 24 years ago
  87. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  88. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  89. 615ae55 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  90. 582acec Trent Mick's Win64 changes: size_t vs. int or long; also some overflow tests. by Guido van Rossum · 24 years ago
  91. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  92. fdc8bdb Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  93. a2ace6a Charles G Waldman: by Guido van Rossum · 24 years ago
  94. 4e998bc M.-A. Lemburg <mal@lemburg.com>: by Fred Drake · 24 years ago
  95. 4467959 Patch by Vladimir Marangozov to include the function name when by Guido van Rossum · 24 years ago
  96. a396a88 Vladimir Marangozov: This fixes the line number in the string by Guido van Rossum · 24 years ago
  97. e4fb958 remove reference (vestigal) to CALL_FUNCTION_STAR by Jeremy Hylton · 24 years ago
  98. 7690151 slightly modified version of Greg Ewing's extended call syntax patch by Jeremy Hylton · 24 years ago
  99. 5aa88f0 Marc-Andre Lemburg: support for Unicode string literals (u"...", ur"..."). by Guido van Rossum · 24 years ago
  100. 72badf5 The cleanup code in com-init() at label fail_0000 should remove by Guido van Rossum · 25 years ago