1. c63d3e9 Suppress a compiler warning under OpenVMS; time_t is unsigned on (at least) by Fred Drake · 23 years ago
  2. 7889107 Fix core dump in example from Samuele Pedroni: by Jeremy Hylton · 23 years ago
  3. 5819aa8 Remove extra close curly in code #ifdef'ed out on my box. by Tim Peters · 23 years ago
  4. 430f5d4 In Steven's apparent absence, check in *something* with a non-zero chance by Tim Peters · 23 years ago
  5. 5125773 Don't add global names to st->st_global if we're already iterating by Jeremy Hylton · 23 years ago
  6. 3dd5ad3 undo introduction of st_global_star by Jeremy Hylton · 23 years ago
  7. c176132 Warn about global statement at the module level. by Jeremy Hylton · 23 years ago
  8. 4419ac1 Add warning/error handlin for problematic nested scopes cases as by Jeremy Hylton · 23 years ago
  9. ee34ac1 Let's have some sanity. Introduce a helper to issue a symbol table warning. by Guido van Rossum · 23 years ago
  10. 0bba7f8 Use the new PyErr_WarnExplicit() API to issue better warnings for by Guido van Rossum · 23 years ago
  11. 9da7f3b SyntaxError__init__(): Be a little more robust when picking apart the by Fred Drake · 23 years ago
  12. 2fd4565 Add PyErr_WarnExplicit(), which calls warnings.warn_explicit(), with by Guido van Rossum · 23 years ago
  13. b797f1f Now that Jeremy is asking about this code, it looks really bogus to me, by Fred Drake · 23 years ago
  14. ad3d3f2 Improve SyntaxErrors for bad future statements. Set file and location by Jeremy Hylton · 23 years ago
  15. 5687ffe SF patch 404928: Support for next Cygwin gcc (2.95.2-8) by Tim Peters · 23 years ago
  16. 9f1b993 Print the offending line of code in the traceback for SyntaxErrors by Jeremy Hylton · 23 years ago
  17. e860f9b Ack -- my eyes are getting bleary. Typos in the comment typo repairs. by Tim Peters · 23 years ago
  18. f91ed2d Comment typos. by Tim Peters · 23 years ago
  19. 50d8d37 Implement PEP 235: Import on Case-Insensitive Platforms. by Tim Peters · 23 years ago
  20. 280c81a Need to support single_input explicitly so from __future__ imports by Jeremy Hylton · 23 years ago
  21. 39e2f3f Presumed correct compiler pass for future statements by Jeremy Hylton · 23 years ago
  22. 4db62b1 Improved __future__ parser; still more to do by Jeremy Hylton · 23 years ago
  23. be77cf7 Add warnings about undefined "global" SF bug #233532 by Jeremy Hylton · 23 years ago
  24. 29906ee Preliminary support for future nested scopes by Jeremy Hylton · 23 years ago
  25. 1e54211 Shuffle premature decref; nuke unreachable code block. by Tim Peters · 23 years ago
  26. 0372af7 symtable_update_free_vars(), symtable_undo_free(), by Barry Warsaw · 23 years ago
  27. 74b3bc4 Fix for bug 133489: compiler leaks memory by Jeremy Hylton · 23 years ago
  28. 85cd1d6 The code in PyImport_Import() tried to save itself a bit of work and by Guido van Rossum · 23 years ago
  29. 2b3f0ca Fix for implicit tuple + default arguments, courtesy of Michael Hudson. by Jeremy Hylton · 23 years ago
  30. 384639f When running python -O, do not include blocks defined in asserts in by Jeremy Hylton · 23 years ago
  31. 17820c4 Tolerate ill-formed trees in symtable_assign(). Fixes SF bug 132510. by Jeremy Hylton · 23 years ago
  32. 4e30378 Bug #132313 error message confusing for assignment in lambda. by Tim Peters · 23 years ago
  33. 6f5a4ef Bug #132850 unix line terminator on windows. by Tim Peters · 23 years ago
  34. 3081421 Change temp names created by listcomps from [%d] to _[%d], so the one-liner by Tim Peters · 23 years ago
  35. fc93b0a Remove trailing comma from 'why_code' enum, which was introduced by the by Thomas Wouters · 23 years ago
  36. 5c4d5bf Related to SF bug 132008 (PyList_Reverse blows up). by Tim Peters · 23 years ago
  37. d7f393e In symtable_update_free_vars() do not modify the dictionary while by Jeremy Hylton · 23 years ago
  38. 3e87656 Ugly fix for SF bug 131239 (-x flag busted). by Tim Peters · 23 years ago
  39. 8af6b83 When calling a PyCFunction that has METH_KEYWORDS defined, don't by Jeremy Hylton · 23 years ago
  40. 6492bf7 SF patch 103589: Fix handling of cell vars that are either * or ** parameters. by Jeremy Hylton · 23 years ago
  41. cb17ae8 Relax the rules for using 'from ... import *' and exec in the presence by Jeremy Hylton · 23 years ago
  42. 3c61c35 This modified version of a patch by Thomas Heller allows __import__ by Marc-André Lemburg · 23 years ago
  43. cd90c20 Reindent a function that was somehow indented by 7 spaces. Also did a by Guido van Rossum · 23 years ago
  44. 2524d69 SF patch 103596 by Nick Mathewson: rause UnboundLocalError for by Jeremy Hylton · 23 years ago
  45. 693291b Superseded by $(srcdir)/Makefile.pre.in. by Neil Schemenauer · 23 years ago
  46. b1cbc1e bump the magic number; the compiler has changed since 2.1a1 by Jeremy Hylton · 23 years ago
  47. 5acc0c0 Fix symbol table pass to generation SyntaxError exceptions that by Jeremy Hylton · 23 years ago
  48. 914a0b1 Steve Majewski's patch #103495, MatchFilename() and find_module() by Barry Warsaw · 23 years ago
  49. 4b38da6 Move a bunch of definitions that were internal to compile.c to by Jeremy Hylton · 23 years ago
  50. bbf10b5 add missing DECREF (thanks, Barry) by Jeremy Hylton · 23 years ago
  51. 3faa52e Allow 'continue' inside 'try' clause SF patch 102989 by Thomas Wouters by Jeremy Hylton · 23 years ago
  52. 483638c Undo recent change that banned using import to bind a global, as per by Jeremy Hylton · 23 years ago
  53. 1ff31f9 SF bug #130532: newest CVS won't build on AIX. by Tim Peters · 24 years ago
  54. eab156f Enforce two illegal import statements that were outlawed in the by Jeremy Hylton · 24 years ago
  55. 2b724da Remove f_closure slot of frameobject and use f_localsplus instead. by Jeremy Hylton · 24 years ago
  56. 2fdfadf plug leak detected by Barry by Jeremy Hylton · 24 years ago
  57. d9b9ac8 It's unclear whether PyMarshal_XXX() are part of the public or private API. by Tim Peters · 24 years ago
  58. 547397c SF bug http://sourceforge.net/bugs/?func=detailbug&bug_id=130242&group_id=5470 by Tim Peters · 24 years ago
  59. a0ac40c Better error message when non-dictionary received for **kwarg by Jeremy Hylton · 24 years ago
  60. 64949cb PEP 227 implementation by Jeremy Hylton · 24 years ago
  61. a6ebc48 Fix bug reported by Ka-Ping Yee: The compiler botched parsing function by Jeremy Hylton · 24 years ago
  62. 9667ed2 Leak pluggin', bug fixin' and better documentin'. Specifically, by Barry Warsaw · 24 years ago
  63. 2975786 Add a new API, PyThreadState_DeleteCurrent() that combines by Guido van Rossum · 24 years ago
  64. 5f827f4 Visit the initial test element of the listmaker for a list by Jeremy Hylton · 24 years ago
  65. 1113cfc prevent symtable_params() from dereferencing off the end of the by Jeremy Hylton · 24 years ago
  66. 174e801 com_init(): My entry into the smallest patch possible category. by Barry Warsaw · 24 years ago
  67. 384fd10 Bug #128475: mimetools.encode (sometimes) fails when called from a thread. by Tim Peters · 24 years ago
  68. 7f3e4ad SF patch #103336: Missing cast. by Tim Peters · 24 years ago
  69. c7050d9 Use #if TARGET_API_MAC_CARBON to determine carbon/classic macos, not #ifdef. by Jack Jansen · 24 years ago
  70. 6f77667 Backed out the unistr() builtin. by Marc-André Lemburg · 24 years ago
  71. c862cf4 clearer error messages for apply() and "no locals" by Jeremy Hylton · 24 years ago
  72. e36f778 This patch introduces an extra pass to the compiler that generates a by Jeremy Hylton · 24 years ago
  73. 8dabbf1 Fix for the bug in complex() just reported by Ping. by Guido van Rossum · 24 years ago
  74. fc5ce61 SF Patch #103250, by pj99: Optimize a strspn() out of startup. by Guido van Rossum · 24 years ago
  75. d94ade1 Add my name to the copyright notice. by Guido van Rossum · 24 years ago
  76. 691e0e9 Variant of SF patch 103252: Startup optimize: read *.pyc as string, not with getc(). by Tim Peters · 24 years ago
  77. 60f42b5 Move distributed and duplicated config for stat() and fstat() into pyport.h. by Tim Peters · 24 years ago
  78. 44a6ff6 Get rid of the initialization of _PyCompareState_Key. by Guido van Rossum · 24 years ago
  79. ad7c98e This patch adds a new builtin unistr() which behaves like str() by Marc-André Lemburg · 24 years ago
  80. 53451b3 Use rich comparisons in min and max. by Guido van Rossum · 24 years ago
  81. ac7be68 Rich comparisons fall-out: by Guido van Rossum · 24 years ago
  82. 2057970 This patch makes sure that the function name always appears in the error by Ka-Ping Yee · 24 years ago
  83. 8eb4b56 Added a separate extension (.carbon.slb) for Carbon dynamic modules. by Jack Jansen · 24 years ago
  84. 03df3b3 Neil discovered a bad DECREF on warnoptions, that caused repeated by Guido van Rossum · 24 years ago
  85. f1fbc62 Update the docstring for apply() so that "args" is marked as optional by Fred Drake · 24 years ago
  86. 18d4d8f Two changes to from...import: by Guido van Rossum · 24 years ago
  87. ad99177 (Modified) patch by Ping - SF Patch #102681. by Guido van Rossum · 24 years ago
  88. f5df383 Fixed bugs noted by Greg Stein by Moshe Zadka · 24 years ago
  89. ceb9b7c stdout is sometimes a macro; use "outf" instead. by Greg Stein · 24 years ago
  90. f68f2fe Implementation of PEP-0217. This closes the PEP, and patch 103170 by Moshe Zadka · 24 years ago
  91. eec72a7 Add missing Py_DECREF in fast_cfunction. Partial fix for SF bug #127699. by Charles G. Waldman · 24 years ago
  92. fef1243 Oops, one more part of the cygwin patch (SF patch #102409 by jlt63: by Guido van Rossum · 24 years ago
  93. 4c3f57c SF Patch #103154 by jlt63: Cygwin Check Import Case Patch. by Guido van Rossum · 24 years ago
  94. b8584e0 Fix signed/unsigned wng. Unfortunately, (unsigned char) << int by Tim Peters · 24 years ago
  95. 1a7aab7 When a PyCFunction that takes only positional parameters is called with by Fred Drake · 24 years ago
  96. be4c0f5 Recognize pyc files even if they don't end in pyc. by Martin v. Löwis · 24 years ago
  97. 23ab199 Add NotImplemented to the builtin module. by Neil Schemenauer · 24 years ago
  98. 5282044 Revised implementation of CALL_FUNCTION and friends. More revision still needed. by Jeremy Hylton · 24 years ago
  99. f07aad1 CHange error messages for ord(), using "string" instead of "string or Unicode" by Andrew M. Kuchling · 24 years ago
  100. 9bcc68c Whoops! Two stray characters crept in to my last check-in by Andrew M. Kuchling · 24 years ago