1. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  2. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  3. 61e4590 Build bots are working again - removing the hack by Christian Heimes · 17 years ago
  4. 81caa79 Quick 'n dirty hack: Increase the magic by 2 to force a rebuild of pyc/pyo files on the build bots by Christian Heimes · 17 years ago
  5. 7f23d86 Initialize PyCompilerFlags cf_flags with 0 by Christian Heimes · 17 years ago
  6. 3c60833 Patch #2477: Added from __future__ import unicode_literals by Christian Heimes · 17 years ago
  7. 7af53be Speed up with statements by storing the __exit__ method on the stack instead of in a temp variable (bumps the magic number for pyc files) by Nick Coghlan · 17 years ago
  8. 5e8e6d2 MS Windows doesn't have mode_t but stat.st_mode is defined as unsigned short. by Christian Heimes · 17 years ago
  9. 4034685 Issue #2051 and patch from Alexander Belopolsky: by Christian Heimes · 17 years ago
  10. 0d92443 Fixed some references leaks in sys. by Christian Heimes · 17 years ago
  11. 3403f15 Fixed #1776. __import__() no longer imports modules by file name by Christian Heimes · 17 years ago
  12. aed6c66 patch #1668: clarify envvar docs; rename THREADDEBUG to PYTHONTHREADDEBUG. by Georg Brandl · 17 years ago
  13. 2da0fce Patch #602345 by Neal Norwitz and me: add -B option and PYTHONDONTWRITEBYTECODE envvar to skip writing bytecode. by Georg Brandl · 17 years ago
  14. 000a074 Modified PyImport_Import and PyImport_ImportModule to always use absolute imports by calling __import__ with an explicit level of 0 by Christian Heimes · 17 years ago
  15. effde12 Speed-up dictionary constructor by about 10%. by Raymond Hettinger · 17 years ago
  16. ef01d82 Implement PEP 366 by Nick Coghlan · 17 years ago
  17. 327a39b Patch #1739468: Directories and zipfiles containing __main__.py are now executable by Nick Coghlan · 17 years ago
  18. 004c1c1 Backport of Guido's review of my patch. by Christian Heimes · 17 years ago
  19. cea681b Backported fix for bug #1392 from py3k branch r58903. by Christian Heimes · 17 years ago
  20. add36e5 Second half of #1752175: #ifdef out references to PyImport_DynLoadFiletab if HAVE_DYNAMIC_LOADING is not defined. by Georg Brandl · 17 years ago
  21. d7e9f60 Revert accidental checkins from last commit. by Georg Brandl · 17 years ago
  22. fdca6d8 Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers. by Georg Brandl · 17 years ago
  23. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  24. 2fca81c Fix indentation (whitespace only). by Neal Norwitz · 17 years ago
  25. 67387fb Make pythoncore compile cleanly with VisualStudio 2005. Used an explicit typecast to get a 64 bit integer, and undefined the Yield macro that conflicts with winbase.h by Kristján Valur Jónsson · 18 years ago
  26. 47c52a8 Inline PyImport_GetModulesReloading(). by Collin Winter · 18 years ago
  27. 75c7c80 Fix some style nits: by Neal Norwitz · 18 years ago
  28. 276887b Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. by Collin Winter · 18 years ago
  29. 7478096 Typos. by Georg Brandl · 18 years ago
  30. cbeb687 Update the peephole optimizer to remove more dead code (jumps after returns) by Neal Norwitz · 18 years ago
  31. 5a9aa4f Fix minor typo in a comment. by Brett Cannon · 18 years ago
  32. 94b69f6 Very minor grammatical fix in a comment. by Brett Cannon · 18 years ago
  33. 2a399b0 Properly handle a NULL returned from PyArena_New(). (Also fix some whitespace) by Neal Norwitz · 18 years ago
  34. 98775df Bug #1550983: emit better error messages for erroneous relative by Georg Brandl · 18 years ago
  35. dac090d Bug #1520864 (again): unpacking singleton tuples in list comprehensions and by Neal Norwitz · 18 years ago
  36. 3cb31ac cpathname could be NULL if it was longer than MAXPATHLEN. Don't try by Neal Norwitz · 18 years ago
  37. 9a70f95 There were really two issues by Neal Norwitz · 18 years ago
  38. 4ffedad Bug #1191458: tracing over for loops now produces a line event by Neal Norwitz · 18 years ago
  39. 0d62a06 Patch #1531113: Fix augmented assignment with yield expressions. by Neal Norwitz · 18 years ago
  40. f7575d0 Bug #1529871: The speed enhancement patch #921466 broke Python's compliance by Phillip J. Eby · 18 years ago
  41. 33722ae Speel initialise write. Tanks Anthony. by Neal Norwitz · 18 years ago
  42. e1fdb32 Handle allocation failures gracefully. Found with failmalloc. by Neal Norwitz · 18 years ago
  43. c0cde4d Fix memory leak under some conditions. by Neal Norwitz · 18 years ago
  44. a1f1090 Actually change the MAGIC #. Create a new section for 2.5c1 and mention the impact of changing the MAGIC #. by Neal Norwitz · 18 years ago
  45. edef2be Bug #1520864: unpacking singleton tuples in for loop (for x, in) work again. by Neal Norwitz · 18 years ago
  46. a4df11d Fix refleaks reported by Shane Hathaway in SF patch #1515361. This change by Neal Norwitz · 18 years ago
  47. 5f6861d Correct None refcount issue in Mac modules. (Are they still used?) by Georg Brandl · 18 years ago
  48. 0fd1291 The empty string is a valid import path. (fixes #1496539) by Georg Brandl · 18 years ago
  49. f4ef116 Need for speed: Patch #921466 : sys.path_importer_cache is now used to cache valid and by Georg Brandl · 18 years ago
  50. 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
  51. 9df4e6f - Add new Warning class, ImportWarning by Thomas Wouters · 19 years ago
  52. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 19 years ago
  53. 4bdaa27 Fix refleak in __import__("") (probably the cause of the 2 refleaks in by Thomas Wouters · 19 years ago
  54. 8ddab27 Fix __import__("") to raise ValueError rather than return None. by Thomas Wouters · 19 years ago
  55. 4ec3c26 Found this in an old email message from Hartmut Goebel. by Skip Montanaro · 19 years ago
  56. 2aa9a5d Use macro versions instead of function versions when we already know the type. by Neal Norwitz · 19 years ago
  57. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 19 years ago
  58. 725507b Change int to Py_ssize_t in several places. by Martin v. Löwis · 19 years ago
  59. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 19 years ago
  60. c2e2074 PEP 343 -- the with-statement. by Guido van Rossum · 19 years ago
  61. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  62. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  63. adb69fc Merge from ast-arena. This reduces the code in Python/ast.c by ~300 lines, by Neal Norwitz · 19 years ago
  64. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  65. aee2e28 the ast-branch changed the stack discipline of MAKE_CLOSURE, so we need to by Michael W. Hudson · 19 years ago
  66. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  67. 708e51a Fix SF bug #976608, Unhelpful error message when mtime of a module is -1 by Neal Norwitz · 19 years ago
  68. 8ee3e5a - Changes donated by Elemental Security to make it work on AIX 5.3 by Guido van Rossum · 19 years ago
  69. 0c55f29 Patch #1290454: Fix reload() error message when parent module is not in by Georg Brandl · 19 years ago
  70. df88846 This is my patch: by Michael W. Hudson · 19 years ago
  71. 7961aa6 Patch #1197318: Cygwin case-sensitive import patch by Jason Tishler · 19 years ago
  72. db29e0f SF patch #1035498: -m option to run a module as a script by Raymond Hettinger · 20 years ago
  73. 7ec642a Fix for SF bug #1029475 : reload() doesn't work with PEP 302 loaders. by Phillip J. Eby · 20 years ago
  74. 2c31a05 SF patch #1031667: Fold tuples of constants into a single constant by Raymond Hettinger · 20 years ago
  75. fd2d1f7 SF Patch #1013667: Cleanup Peepholer Output by Raymond Hettinger · 20 years ago
  76. 1cd7017 PyImport_ExecCodeModuleEx(): remove module from sys.modules in error cases. by Tim Peters · 20 years ago
  77. a7c6509 lock_held() docs: Use True/False instead of 1/0. The LaTeX docs were by Tim Peters · 20 years ago
  78. 86c7d2f Trimmed trailing whitespace. by Tim Peters · 20 years ago
  79. ef82d2f Patch #923098: Share interned strings in marshal. by Martin v. Löwis · 20 years ago
  80. 2565324 Fix a refcount bug in an obscure code corner. Already backported. by Thomas Heller · 20 years ago
  81. 8759090 starting to add comments to explain what's here by Fred Drake · 20 years ago
  82. d4ceb31 Bump the magic number to avoid sharing bytecode between 2.3 and 2.4. by Jeremy Hylton · 21 years ago
  83. 01ab279 Marshal clean-up (SF patch #873224) by Armin Rigo · 21 years ago
  84. e5662ae Changed random calls to PyThreadState_Get() to use the macro by Nicholas Bastin · 21 years ago
  85. 83969ee Decref all if ensure_fromlist fails. Fixes #876533. Backported to 2.3. by Martin v. Löwis · 21 years ago
  86. ecd9129 Add comment to mollify Tim. by Jeremy Hylton · 21 years ago
  87. eddc144 Getting rid of all the code inside #ifdef macintosh too. by Jack Jansen · 21 years ago
  88. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  89. 6bc06ec Bug #794140: cygwin builds do not embed by Jason Tishler · 21 years ago
  90. 1e5fc55 - fix typo by Fred Drake · 21 years ago
  91. 00b0966 Don't use the module object setattr when importing submodules. Instead, by Neil Schemenauer · 21 years ago
  92. a11e4c1 SF patch #708201, unchecked return value in import.c by Jason Harper by Neal Norwitz · 22 years ago
  93. 08ea61a Remove PyArg_ParseTuple() for methods which take no args, by Neal Norwitz · 22 years ago
  94. 2294c0d Cleanup from patch #683257: by Neal Norwitz · 22 years ago
  95. c4f4ca9 Provide access to the import lock, fixing SF bug #580952. This is by Guido van Rossum · 22 years ago
  96. 9363dca MacPython-OS9 specific fix: If there are non-string items on sys.path don't try to intern them. This has the theoretical problem that resource filenames on sys.path cannot be unicode objects, but in practice that shouldn't matter. by Jack Jansen · 22 years ago
  97. 52e14d6 PEP 302 + zipimport: by Just van Rossum · 22 years ago
  98. 8982595 Backing out patch #642578 in anticipation of final acceptance of PEP 302. by Just van Rossum · 22 years ago
  99. 72f3b7a Added missing casts. by Jack Jansen · 22 years ago
  100. 79acb9e Patch #614055: Support OpenVMS. by Martin v. Löwis · 22 years ago