1. 5ac946c SF patch #416249, from Mark Favas: 2.1c1 compile: unused vrbl cleanup by Tim Peters · 23 years ago
  2. fb1f68e Always pass a full path name to LoadLibraryEx(). Fixes some Windows 9x problems. As discussed on python-dev by Mark Hammond · 23 years ago
  3. 72f98e9 SF bug #422177: Results from .pyc differs from .py by Tim Peters · 23 years ago
  4. 9c90105 Several small changes. Mostly reformatting, adding parens. by Jeremy Hylton · 23 years ago
  5. 8572b4f Generalize zip() to work with iterators. by Tim Peters · 23 years ago
  6. f4848da Make PyIter_Next() a little smarter (wrt its knowledge of iterator by Tim Peters · 23 years ago
  7. 15d81ef Generalize reduce() to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 23 years ago
  8. 4e9afdc Generalize map() to work with iterators. by Tim Peters · 23 years ago
  9. c307453 Generalize max(seq) and min(seq) to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 23 years ago
  10. 6f15e57 Added new parser markers 'et' and 'et#' which do not recode string by Marc-André Lemburg · 23 years ago
  11. 0e57abf Generalize filter(f, seq) to work with iterators. This also generalizes by Tim Peters · 23 years ago
  12. cab3f68 SF bug #417093: Case sensitive import: dir and .py file w/ same name by Tim Peters · 23 years ago
  13. 748b8bb Fix buglet reported on c.l.py: map(fnc, file.xreadlines()) blows up. by Tim Peters · 23 years ago
  14. ddc4fd0 Fix 2.1 nested scopes crash reported by Evan Simpson by Jeremy Hylton · 23 years ago
  15. 960d948 improved error message-- names the type of the unexpected object by Jeremy Hylton · 23 years ago
  16. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  17. cf96de0 SF but #417587: compiler warnings compiling 2.1. by Tim Peters · 23 years ago
  18. 59d1d2b Iterators phase 1. This comprises: by Guido van Rossum · 23 years ago
  19. f68d8e5 Make some private symbols static. by Guido van Rossum · 23 years ago
  20. 37832f0 split long line by Jeremy Hylton · 23 years ago
  21. c76770c Change error message raised when free variable is not yet bound. It by Jeremy Hylton · 23 years ago
  22. d9994e0 Patch by Ping (SF bug 415879, Exception.__init__() causes segfault): by Guido van Rossum · 23 years ago
  23. 23f7aed Because this code was derived from Python 1.6.1 (amongst others), the by Guido van Rossum · 23 years ago
  24. ce260d5 Update copyright to PSF. by Guido van Rossum · 23 years ago
  25. 512a237 Fix exception handling for non-PyFunction objects, SF bug 414743. by Jeremy Hylton · 23 years ago
  26. bceccf5 Updated version of RISCOS support. SF patch 411213 by Dietmar Schwertberger by Guido van Rossum · 23 years ago
  27. 4471400 test_pickle works on sizeof(long)==8 boxes again. by Tim Peters · 23 years ago
  28. a830b38 Warn when assigning to __debug__ instead of raising an error. by Jeremy Hylton · 23 years ago
  29. 388ed08 SF patch #413552 - Premature decref on object by Tim Peters · 23 years ago
  30. 673a4fd Bug fix: compile() called from a nested-scopes-enable Python was not by Jeremy Hylton · 23 years ago
  31. 66e8e86 Finishing touch to Ping's changes. This is a patch that Ping sent me by Guido van Rossum · 23 years ago
  32. 6a12d8d call_sys_exitfunc(): Remove unused variable f. by Fred Drake · 23 years ago
  33. 26fabb0 Allow sys.excepthook and sys.exitfunc to quietly exit with a sys.exit(). by Ka-Ping Yee · 23 years ago
  34. 897b821 Make it illegal to assign to __debug__ as per Guido's request. by Jeremy Hylton · 23 years ago
  35. 4131830 Fix memory leak with SyntaxError. (The DECREF was originally hidden by Guido van Rossum · 23 years ago
  36. b5c5132 Add sys.excepthook. by Ka-Ping Yee · 23 years ago
  37. 2e2cded Set the line number correctly for a nested function with an exec or by Jeremy Hylton · 23 years ago
  38. 280e6bd Make error messages clearer for illegal combinations of nested by Jeremy Hylton · 23 years ago
  39. bc32024 Extend support for from __future__ import nested_scopes by Jeremy Hylton · 23 years ago
  40. 061d106 If a code object is compiled with nested scopes, define the CO_NESTED flag. by Jeremy Hylton · 23 years ago
  41. 66b0e9c Use PyObject_IsInstance() to check whether the first argument to an by Guido van Rossum · 23 years ago
  42. ded4bd7 Update PyNode_CompileSymtable() to understand future statements by Jeremy Hylton · 23 years ago
  43. 823649d Move the code implementing isinstance() and issubclass() to new C by Guido van Rossum · 23 years ago
  44. 220ae7c Fix PyFrame_FastToLocals() and counterpart to deal with cells and by Jeremy Hylton · 23 years ago
  45. 4df3c52 Case-checking was broken on the Macintosh. Fixed. by Jack Jansen · 23 years ago
  46. ce7ef59 Fixup handling of free variables in methods when the class scope also by Jeremy Hylton · 23 years ago
  47. 23b4227 Fix crashes in nested list comprehensions SF bugs 409230 and 407800 by Jeremy Hylton · 23 years ago
  48. 30c9f39 Variety of small INC/DECREF patches that fix reported memory leaks by Jeremy Hylton · 23 years ago
  49. aec7924 Py_BuildValue(): Add "D" conversion to create a Python complex value from by Fred Drake · 23 years ago
  50. 198457a When iterating over the names imported in a future statement, ignore the by Fred Drake · 23 years ago
  51. 2b6727b Use Py_CHARMASK for ctype macros. Fixes bug #232787. by Martin v. Löwis · 23 years ago
  52. a76ba6e Add some spaces around the "=" in assignments. by Fred Drake · 23 years ago
  53. 48a680c RISCOS changes by dschwertberger. by Guido van Rossum · 23 years ago
  54. 207fda6 Refactored the warning-issuing code more. by Guido van Rossum · 23 years ago
  55. 677898a Thanks to Steven Majewski, finally putting MacOS X imports to bed for 2.1b1. by Tim Peters · 23 years ago
  56. 9f324e9 Useful future statement support for the interactive interpreter by Jeremy Hylton · 23 years ago
  57. d1e87a8 More MacOSX fiddling. As noted in a comment, I believe all variations by Tim Peters · 23 years ago
  58. dbe6ebb More fiddling w/ the new-fangled Mac import code. by Tim Peters · 23 years ago
  59. c63d3e9 Suppress a compiler warning under OpenVMS; time_t is unsigned on (at least) by Fred Drake · 23 years ago
  60. 7889107 Fix core dump in example from Samuele Pedroni: by Jeremy Hylton · 23 years ago
  61. 5819aa8 Remove extra close curly in code #ifdef'ed out on my box. by Tim Peters · 23 years ago
  62. 430f5d4 In Steven's apparent absence, check in *something* with a non-zero chance by Tim Peters · 23 years ago
  63. 5125773 Don't add global names to st->st_global if we're already iterating by Jeremy Hylton · 23 years ago
  64. 3dd5ad3 undo introduction of st_global_star by Jeremy Hylton · 23 years ago
  65. c176132 Warn about global statement at the module level. by Jeremy Hylton · 23 years ago
  66. 4419ac1 Add warning/error handlin for problematic nested scopes cases as by Jeremy Hylton · 23 years ago
  67. ee34ac1 Let's have some sanity. Introduce a helper to issue a symbol table warning. by Guido van Rossum · 23 years ago
  68. 0bba7f8 Use the new PyErr_WarnExplicit() API to issue better warnings for by Guido van Rossum · 23 years ago
  69. 9da7f3b SyntaxError__init__(): Be a little more robust when picking apart the by Fred Drake · 23 years ago
  70. 2fd4565 Add PyErr_WarnExplicit(), which calls warnings.warn_explicit(), with by Guido van Rossum · 23 years ago
  71. b797f1f Now that Jeremy is asking about this code, it looks really bogus to me, by Fred Drake · 23 years ago
  72. ad3d3f2 Improve SyntaxErrors for bad future statements. Set file and location by Jeremy Hylton · 23 years ago
  73. 5687ffe SF patch 404928: Support for next Cygwin gcc (2.95.2-8) by Tim Peters · 23 years ago
  74. 9f1b993 Print the offending line of code in the traceback for SyntaxErrors by Jeremy Hylton · 23 years ago
  75. e860f9b Ack -- my eyes are getting bleary. Typos in the comment typo repairs. by Tim Peters · 23 years ago
  76. f91ed2d Comment typos. by Tim Peters · 23 years ago
  77. 50d8d37 Implement PEP 235: Import on Case-Insensitive Platforms. by Tim Peters · 23 years ago
  78. 280c81a Need to support single_input explicitly so from __future__ imports by Jeremy Hylton · 23 years ago
  79. 39e2f3f Presumed correct compiler pass for future statements by Jeremy Hylton · 23 years ago
  80. 4db62b1 Improved __future__ parser; still more to do by Jeremy Hylton · 23 years ago
  81. be77cf7 Add warnings about undefined "global" SF bug #233532 by Jeremy Hylton · 23 years ago
  82. 29906ee Preliminary support for future nested scopes by Jeremy Hylton · 23 years ago
  83. 1e54211 Shuffle premature decref; nuke unreachable code block. by Tim Peters · 23 years ago
  84. 0372af7 symtable_update_free_vars(), symtable_undo_free(), by Barry Warsaw · 23 years ago
  85. 74b3bc4 Fix for bug 133489: compiler leaks memory by Jeremy Hylton · 23 years ago
  86. 85cd1d6 The code in PyImport_Import() tried to save itself a bit of work and by Guido van Rossum · 23 years ago
  87. 2b3f0ca Fix for implicit tuple + default arguments, courtesy of Michael Hudson. by Jeremy Hylton · 23 years ago
  88. 384639f When running python -O, do not include blocks defined in asserts in by Jeremy Hylton · 23 years ago
  89. 17820c4 Tolerate ill-formed trees in symtable_assign(). Fixes SF bug 132510. by Jeremy Hylton · 23 years ago
  90. 4e30378 Bug #132313 error message confusing for assignment in lambda. by Tim Peters · 23 years ago
  91. 6f5a4ef Bug #132850 unix line terminator on windows. by Tim Peters · 23 years ago
  92. 3081421 Change temp names created by listcomps from [%d] to _[%d], so the one-liner by Tim Peters · 23 years ago
  93. fc93b0a Remove trailing comma from 'why_code' enum, which was introduced by the by Thomas Wouters · 23 years ago
  94. 5c4d5bf Related to SF bug 132008 (PyList_Reverse blows up). by Tim Peters · 23 years ago
  95. d7f393e In symtable_update_free_vars() do not modify the dictionary while by Jeremy Hylton · 23 years ago
  96. 3e87656 Ugly fix for SF bug 131239 (-x flag busted). by Tim Peters · 23 years ago
  97. 8af6b83 When calling a PyCFunction that has METH_KEYWORDS defined, don't by Jeremy Hylton · 23 years ago
  98. 6492bf7 SF patch 103589: Fix handling of cell vars that are either * or ** parameters. by Jeremy Hylton · 23 years ago
  99. cb17ae8 Relax the rules for using 'from ... import *' and exec in the presence by Jeremy Hylton · 23 years ago
  100. 3c61c35 This modified version of a patch by Thomas Heller allows __import__ by Marc-André Lemburg · 23 years ago