1. dfdfaab Feature #1534 by Christian Heimes · 18 years ago
  2. dafd32b Issue #1521: on 64bit platforms, str.decode fails on very long strings. by Amaury Forgeot d'Arc · 18 years ago
  3. 025c347 Issue #1402: PyInterpreterState_Clear() may still invoke user code by Amaury Forgeot d'Arc · 18 years ago
  4. 28104c5 Expose Py_Py3kWarningFlag as sys.py3kwarning as discussed in #1504 by Christian Heimes · 18 years ago
  5. ffcd1e1 Added filename to compiling struct based on Martin's suggestion. by Christian Heimes · 18 years ago
  6. 6d8fb1a And yet another fix for the patch. Paul Moore has send me a note that I've missed a declaration. The additional code has moved the declaration in the middle of the block. by Christian Heimes · 18 years ago
  7. e36fe53 How did the comment get there? by Christian Heimes · 18 years ago
  8. 02c9ab5 Fixed problems in the last commit. Filenames and line numbers weren't reported correctly. by Christian Heimes · 18 years ago
  9. 729ab15 Applied patch #1754273 and #1754271 from Thomas Glee by Christian Heimes · 18 years ago
  10. e8954f8 Backport of the PCbuild9 directory from the py3k branch. by Christian Heimes · 18 years ago
  11. 327a39b Patch #1739468: Directories and zipfiles containing __main__.py are now executable by Nick Coghlan · 18 years ago
  12. 0d75f09 Merge from py3k branch: by Amaury Forgeot d'Arc · 18 years ago
  13. 63bf149 Patch #1418: Make the AC_REPLACE_FUNCS object files actually work. by Martin v. Löwis · 18 years ago
  14. 004c1c1 Backport of Guido's review of my patch. by Christian Heimes · 18 years ago
  15. cea681b Backported fix for bug #1392 from py3k branch r58903. by Christian Heimes · 18 years ago
  16. dc1d1ba Add build option for faster loop execution. by Raymond Hettinger · 18 years ago
  17. 12e9420 Fix marshal's incorrect handling of subclasses of builtin types (backport candidate). by Raymond Hettinger · 18 years ago
  18. a45c487 Missing DECREFs by Raymond Hettinger · 18 years ago
  19. 3a8daf5 Fixup error return and add support for intermixed ints and floats/ by Raymond Hettinger · 18 years ago
  20. 3f8caa3 Optimize sum() for integer and float inputs. by Raymond Hettinger · 18 years ago
  21. 15f2661 Fix Coverity 185-186: If the passed in FILE is NULL, uninitialized memory by Neal Norwitz · 18 years ago
  22. 3adac21 Fix Coverity #158: Check the correct variable. by Neal Norwitz · 18 years ago
  23. e217602 Try harder to stay within the 79-column limit. There's still two places that go (way) over, but those are harder to fix without suffering in readability. by Thomas Wouters · 18 years ago
  24. ae406c6 Whitespace cleanup. by Thomas Wouters · 18 years ago
  25. 5a5bc7b Fix #1169: remove docstrings in functions for -OO. by Georg Brandl · 18 years ago
  26. 1e534b5 Fix a crasher where Python code managed to infinitely recurse in C code without by Brett Cannon · 18 years ago
  27. b90f52e Revert compile.c changes that shouldn't have been included in previous checkin by Nick Coghlan · 18 years ago
  28. 3af0e78 Revert misguided attempt at fixing incompatibility between -m and -i switches (better fix coming soon) by Nick Coghlan · 18 years ago
  29. add36e5 Second half of #1752175: #ifdef out references to PyImport_DynLoadFiletab if HAVE_DYNAMIC_LOADING is not defined. by Georg Brandl · 18 years ago
  30. d8672aa Fix compile.c so that it records 0.0 and -0.0 as separate constants in a code by Alex Martelli · 18 years ago
  31. d7e9f60 Revert accidental checkins from last commit. by Georg Brandl · 18 years ago
  32. fdca6d8 Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers. by Georg Brandl · 18 years ago
  33. 69ff5ac Place #ifdef Py_USING_UNICODE around decode_unicode(). by Georg Brandl · 18 years ago
  34. 2ef7582 Handle errors when generating a warning. by Neal Norwitz · 18 years ago
  35. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
  36. b6ac23c SF patch# 1755885 by Kurt Kaiser: show location of Unicode escape errors. by Guido van Rossum · 18 years ago
  37. 84a3efe Add T_PYSSIZET in structmember.h: This can be used for Py_ssize_t members. by Walter Dörwald · 18 years ago
  38. 6371cd8 Patch #1733960: Allow T_LONGLONG to accept ints. Will backport to 2.5. by Martin v. Löwis · 18 years ago
  39. 080b598 Use macro version of GET_SIZE to avoid Coverity warning (#150) about a possible error. by Neal Norwitz · 18 years ago
  40. e06cf45 Disallow function calls like foo(None=1). by Georg Brandl · 18 years ago
  41. a5ea689 Bug #1722484: remove docstrings again when running with -OO. by Georg Brandl · 18 years ago
  42. 2fca81c Fix indentation (whitespace only). by Neal Norwitz · 18 years ago
  43. 629ec26 Include <windows.h> after python.h, so that WINNT is properly set before windows.h is included. Fixes warnings in PC builds. by Kristján Valur Jónsson · 18 years ago
  44. df25efe Add a bunch more deprecation warnings for builtins that are going away in 3.0 by Neal Norwitz · 18 years ago
  45. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 18 years ago
  46. 2134e75 Patch #1686487: you can now pass any mapping after '**' in function calls. by Georg Brandl · 18 years ago
  47. 6290305 Backport PEP 3110's new 'except' syntax to 2.6. by Collin Winter · 18 years ago
  48. f6b0e4d Last try for tweaking the max stack depth. 5000 was the original value, by Neal Norwitz · 18 years ago
  49. 4f82bc3 Set the depth to something very small to try to determine if the by Neal Norwitz · 18 years ago
  50. 117ef08 Reduce the max stack depth to see if this fixes the segfaults on by Neal Norwitz · 18 years ago
  51. b1a9b37 Fix bug in marshal where bad data would cause a segfault due to by Neal Norwitz · 18 years ago
  52. bc1b5f1 Remove an XXX that is unnecessary. by Georg Brandl · 18 years ago
  53. f030394 Fix problems in x64 build that were discovered by the testsuite: by Kristján Valur Jónsson · 18 years ago
  54. dc9b32e Handle a couple of uncaught errors. This should be backported by Neal Norwitz · 18 years ago
  55. b8ae3d0 Actually raise an exception before calling ast_error_finish. by Georg Brandl · 18 years ago
  56. f371cb1 Remove obsolete comment. Importing of .dll files has been discontinued, only .pyd files supported on windows now. by Kristján Valur Jónsson · 18 years ago
  57. 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
  58. 17b8e97 Merge change 54909 from release25-maint: Fix several minor issues discovered using code analysis in VisualStudio 2005 Team Edition by Kristján Valur Jónsson · 18 years ago
  59. 68cdf8a SF #1701207, Fix bogus assertion (and test it!) by Neal Norwitz · 18 years ago
  60. 2f2f579 Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed chars in frameobject.c which can occur with opcodes > 127 by Kristján Valur Jónsson · 18 years ago
  61. 5cb76c1 Patch #1682205: a TypeError while unpacking an iterable is no longer by Georg Brandl · 18 years ago
  62. aa754b7 Remove unused file spotted by Paul Hankin by Neal Norwitz · 18 years ago
  63. dd2cf1c Clean up formatting of this file. by Jeremy Hylton · 18 years ago
  64. 77c67bd Patch #1642547: Fix an error/crash when encountering syntax errors in complex if statements. by Collin Winter · 18 years ago
  65. 47c52a8 Inline PyImport_GetModulesReloading(). by Collin Winter · 18 years ago
  66. 5240d74 Patch #1444529: the builtin compile() now accepts keyword arguments. (backport) by Georg Brandl · 18 years ago
  67. 3bb1567 Typo and grammar fixes. by Georg Brandl · 18 years ago
  68. 75c7c80 Fix some style nits: by Neal Norwitz · 18 years ago
  69. 276887b Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. by Collin Winter · 18 years ago
  70. 7b9c555 Bug #1678647: write a newline after printing an exception in any by Georg Brandl · 18 years ago
  71. 871f1bc Backport from Py3k branch: by Georg Brandl · 18 years ago
  72. 7478096 Typos. by Georg Brandl · 18 years ago
  73. aa2321b Patch #703779: unset __file__ in __main__ after running a file. This by Georg Brandl · 18 years ago
  74. 49aafc9 Variant of patch #697613: don't exit the interpreter on a SystemExit by Georg Brandl · 18 years ago
  75. 098cd69 Bug #1674503: close the file opened by execfile() in an error condition. by Georg Brandl · 18 years ago
  76. 0fca97a Patch #1674228: when assigning a slice (old-style), check for the by Georg Brandl · 18 years ago
  77. 20e1199 Fix embarrassing typo and fix constantification of None by Raymond Hettinger · 18 years ago
  78. 819de6c tabify by Jeremy Hylton · 18 years ago
  79. 37075c5 Fix long-standing bug in name mangling for package imports by Jeremy Hylton · 18 years ago
  80. f83b751 SF #1669182, 2.5 was already fixed. Just assert in 2.6 since string exceptions by Neal Norwitz · 18 years ago
  81. 88516a6 When printing an unraisable error, don't print exceptions. before the name. by Neal Norwitz · 18 years ago
  82. 7b7d1c8 Fix a couple of problems in generating the AST code: by Neal Norwitz · 18 years ago
  83. 7c1e347 Reformat long lines. by Jeremy Hylton · 18 years ago
  84. 714b112 Put declarations before code. by Jeremy Hylton · 18 years ago
  85. c5ceb25 Fix crash in exec when unicode filename can't be decoded. by Jeremy Hylton · 18 years ago
  86. 0db62aa Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c by Brett Cannon · 18 years ago
  87. d080d4b Check in changed Python-ast.c from a cosmetic change to Python.asdl (in r53731). by Brett Cannon · 18 years ago
  88. 129bd52 No more raising of string exceptions! by Brett Cannon · 19 years ago
  89. 6c5c502 Make PyTraceBack_Here use the current thread, not the by Martin v. Löwis · 19 years ago
  90. afea529 SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize by Thomas Wouters · 19 years ago
  91. 83955ef update to (c) years to include 2007 by Anthony Baxter · 19 years ago
  92. 4bd97d4 SF# 1409443: Expand comment to cover the interaction between f->f_lasti and the PREDICT macros. by Raymond Hettinger · 19 years ago
  93. 72cd02c Prevent crash on shutdown which can occur if we are finalizing by Neal Norwitz · 19 years ago
  94. 7037085 Forgot a case where the locals can now be a general mapping by Armin Rigo · 19 years ago
  95. 85dbec6 Bug #1588287: fix invalid assertion for `1,2` in debug builds. by Neal Norwitz · 19 years ago
  96. f733a01 Update comments, remove commented out code. by Neal Norwitz · 19 years ago
  97. 2c4fb8d Clean up a leftover from old listcomp generation code. by Georg Brandl · 19 years ago
  98. 21997af Fix bug #1565514, SystemError not raised on too many nested blocks. by Neal Norwitz · 19 years ago
  99. 837ce93 Add some asserts. In sysmodule, I think these were to try to silence by Neal Norwitz · 19 years ago
  100. 1f3ebe0 [Bug #1542016] Report PCALL_POP value. This makes the return value of sys.callstats() match its docstring. by Andrew M. Kuchling · 19 years ago