1. 1e534b5 Fix a crasher where Python code managed to infinitely recurse in C code without by Brett Cannon · 17 years ago
  2. b90f52e Revert compile.c changes that shouldn't have been included in previous checkin by Nick Coghlan · 17 years ago
  3. 3af0e78 Revert misguided attempt at fixing incompatibility between -m and -i switches (better fix coming soon) by Nick Coghlan · 17 years ago
  4. add36e5 Second half of #1752175: #ifdef out references to PyImport_DynLoadFiletab if HAVE_DYNAMIC_LOADING is not defined. by Georg Brandl · 17 years ago
  5. d8672aa Fix compile.c so that it records 0.0 and -0.0 as separate constants in a code by Alex Martelli · 17 years ago
  6. d7e9f60 Revert accidental checkins from last commit. by Georg Brandl · 17 years ago
  7. fdca6d8 Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers. by Georg Brandl · 17 years ago
  8. 69ff5ac Place #ifdef Py_USING_UNICODE around decode_unicode(). by Georg Brandl · 17 years ago
  9. 2ef7582 Handle errors when generating a warning. by Neal Norwitz · 17 years ago
  10. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  11. b6ac23c SF patch# 1755885 by Kurt Kaiser: show location of Unicode escape errors. by Guido van Rossum · 17 years ago
  12. 84a3efe Add T_PYSSIZET in structmember.h: This can be used for Py_ssize_t members. by Walter Dörwald · 17 years ago
  13. 6371cd8 Patch #1733960: Allow T_LONGLONG to accept ints. Will backport to 2.5. by Martin v. Löwis · 17 years ago
  14. 080b598 Use macro version of GET_SIZE to avoid Coverity warning (#150) about a possible error. by Neal Norwitz · 17 years ago
  15. e06cf45 Disallow function calls like foo(None=1). by Georg Brandl · 17 years ago
  16. a5ea689 Bug #1722484: remove docstrings again when running with -OO. by Georg Brandl · 17 years ago
  17. 2fca81c Fix indentation (whitespace only). by Neal Norwitz · 17 years ago
  18. 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 · 17 years ago
  19. df25efe Add a bunch more deprecation warnings for builtins that are going away in 3.0 by Neal Norwitz · 17 years ago
  20. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 17 years ago
  21. 2134e75 Patch #1686487: you can now pass any mapping after '**' in function calls. by Georg Brandl · 17 years ago
  22. 6290305 Backport PEP 3110's new 'except' syntax to 2.6. by Collin Winter · 17 years ago
  23. f6b0e4d Last try for tweaking the max stack depth. 5000 was the original value, by Neal Norwitz · 17 years ago
  24. 4f82bc3 Set the depth to something very small to try to determine if the by Neal Norwitz · 17 years ago
  25. 117ef08 Reduce the max stack depth to see if this fixes the segfaults on by Neal Norwitz · 17 years ago
  26. b1a9b37 Fix bug in marshal where bad data would cause a segfault due to by Neal Norwitz · 17 years ago
  27. bc1b5f1 Remove an XXX that is unnecessary. by Georg Brandl · 18 years ago
  28. f030394 Fix problems in x64 build that were discovered by the testsuite: by Kristján Valur Jónsson · 18 years ago
  29. dc9b32e Handle a couple of uncaught errors. This should be backported by Neal Norwitz · 18 years ago
  30. b8ae3d0 Actually raise an exception before calling ast_error_finish. by Georg Brandl · 18 years ago
  31. 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
  32. 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
  33. 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
  34. 68cdf8a SF #1701207, Fix bogus assertion (and test it!) by Neal Norwitz · 18 years ago
  35. 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
  36. 5cb76c1 Patch #1682205: a TypeError while unpacking an iterable is no longer by Georg Brandl · 18 years ago
  37. aa754b7 Remove unused file spotted by Paul Hankin by Neal Norwitz · 18 years ago
  38. dd2cf1c Clean up formatting of this file. by Jeremy Hylton · 18 years ago
  39. 77c67bd Patch #1642547: Fix an error/crash when encountering syntax errors in complex if statements. by Collin Winter · 18 years ago
  40. 47c52a8 Inline PyImport_GetModulesReloading(). by Collin Winter · 18 years ago
  41. 5240d74 Patch #1444529: the builtin compile() now accepts keyword arguments. (backport) by Georg Brandl · 18 years ago
  42. 3bb1567 Typo and grammar fixes. by Georg Brandl · 18 years ago
  43. 75c7c80 Fix some style nits: by Neal Norwitz · 18 years ago
  44. 276887b Bug #742342: make Python stop segfaulting on infinitely-recursive reload()s. Fixed by patch #922167. by Collin Winter · 18 years ago
  45. 7b9c555 Bug #1678647: write a newline after printing an exception in any by Georg Brandl · 18 years ago
  46. 871f1bc Backport from Py3k branch: by Georg Brandl · 18 years ago
  47. 7478096 Typos. by Georg Brandl · 18 years ago
  48. aa2321b Patch #703779: unset __file__ in __main__ after running a file. This by Georg Brandl · 18 years ago
  49. 49aafc9 Variant of patch #697613: don't exit the interpreter on a SystemExit by Georg Brandl · 18 years ago
  50. 098cd69 Bug #1674503: close the file opened by execfile() in an error condition. by Georg Brandl · 18 years ago
  51. 0fca97a Patch #1674228: when assigning a slice (old-style), check for the by Georg Brandl · 18 years ago
  52. 20e1199 Fix embarrassing typo and fix constantification of None by Raymond Hettinger · 18 years ago
  53. 819de6c tabify by Jeremy Hylton · 18 years ago
  54. 37075c5 Fix long-standing bug in name mangling for package imports by Jeremy Hylton · 18 years ago
  55. f83b751 SF #1669182, 2.5 was already fixed. Just assert in 2.6 since string exceptions by Neal Norwitz · 18 years ago
  56. 88516a6 When printing an unraisable error, don't print exceptions. before the name. by Neal Norwitz · 18 years ago
  57. 7b7d1c8 Fix a couple of problems in generating the AST code: by Neal Norwitz · 18 years ago
  58. 7c1e347 Reformat long lines. by Jeremy Hylton · 18 years ago
  59. 714b112 Put declarations before code. by Jeremy Hylton · 18 years ago
  60. c5ceb25 Fix crash in exec when unicode filename can't be decoded. by Jeremy Hylton · 18 years ago
  61. 0db62aa Modify Parser/asdl_c.py so that the __version__ number for Python/Python-ast.c by Brett Cannon · 18 years ago
  62. d080d4b Check in changed Python-ast.c from a cosmetic change to Python.asdl (in r53731). by Brett Cannon · 18 years ago
  63. 129bd52 No more raising of string exceptions! by Brett Cannon · 18 years ago
  64. 6c5c502 Make PyTraceBack_Here use the current thread, not the by Martin v. Löwis · 18 years ago
  65. afea529 SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize by Thomas Wouters · 18 years ago
  66. 83955ef update to (c) years to include 2007 by Anthony Baxter · 18 years ago
  67. 4bd97d4 SF# 1409443: Expand comment to cover the interaction between f->f_lasti and the PREDICT macros. by Raymond Hettinger · 18 years ago
  68. 72cd02c Prevent crash on shutdown which can occur if we are finalizing by Neal Norwitz · 18 years ago
  69. 7037085 Forgot a case where the locals can now be a general mapping by Armin Rigo · 18 years ago
  70. 85dbec6 Bug #1588287: fix invalid assertion for `1,2` in debug builds. by Neal Norwitz · 18 years ago
  71. f733a01 Update comments, remove commented out code. by Neal Norwitz · 18 years ago
  72. 2c4fb8d Clean up a leftover from old listcomp generation code. by Georg Brandl · 18 years ago
  73. 21997af Fix bug #1565514, SystemError not raised on too many nested blocks. by Neal Norwitz · 18 years ago
  74. 837ce93 Add some asserts. In sysmodule, I think these were to try to silence by Neal Norwitz · 18 years ago
  75. 1f3ebe0 [Bug #1542016] Report PCALL_POP value. This makes the return value of sys.callstats() match its docstring. by Andrew M. Kuchling · 18 years ago
  76. b5bc537 Patch #1549049: Rewrite type conversion in structmember. by Martin v. Löwis · 18 years ago
  77. cbeb687 Update the peephole optimizer to remove more dead code (jumps after returns) by Neal Norwitz · 18 years ago
  78. 8134d06 Bug #1283491: follow docstring convention wrt. keyword-able args in sum(). by Georg Brandl · 18 years ago
  79. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  80. 82271f1 Fix for SF bug 1569998: break permitted inside try. by Jeremy Hylton · 18 years ago
  81. 5a9aa4f Fix minor typo in a comment. by Brett Cannon · 18 years ago
  82. 94b69f6 Very minor grammatical fix in a comment. by Brett Cannon · 18 years ago
  83. d3f9190 Remove extra semi-colons reported by Johnny Lee on python-dev. Backport if anyone cares. by Neal Norwitz · 18 years ago
  84. 3a23017 Bug #1557232: fix seg fault with def f((((x)))) and def f(((x),)). by Neal Norwitz · 18 years ago
  85. d14bf61 Fix typo. by Walter Dörwald · 18 years ago
  86. ec6c2df Forward-port of rev. 51857: by Georg Brandl · 18 years ago
  87. 2a399b0 Properly handle a NULL returned from PyArena_New(). (Also fix some whitespace) by Neal Norwitz · 18 years ago
  88. ca460d9 with and as are now keywords. There are some generated files I can't recreate. by Neal Norwitz · 18 years ago
  89. 98775df Bug #1550983: emit better error messages for erroneous relative by Georg Brandl · 18 years ago
  90. d042132 M-x untabify by Neal Norwitz · 18 years ago
  91. e4d4f00 Add a comment about some refactoring. (There's probably more that should be done.) I will reformat this file in the next checkin due to the inconsistent tabs/spaces. by Neal Norwitz · 18 years ago
  92. dac090d Bug #1520864 (again): unpacking singleton tuples in list comprehensions and by Neal Norwitz · 18 years ago
  93. 477ca1c Fix SF #1552093, eval docstring typo (3 ps in mapping) by Neal Norwitz · 18 years ago
  94. 0c6ae5b Handle a few more error conditions. by Neal Norwitz · 18 years ago
  95. 4f096d9 Patch #1542451: disallow continue anywhere under a finally by Neal Norwitz · 18 years ago
  96. 87557cd Add assert to make Klocwork happy (#276) by Neal Norwitz · 18 years ago
  97. 644dddc Move peephole optimizer to separate file. by Jeremy Hylton · 18 years ago
  98. 7605936 Handle PyString_FromInternedString() failing (unlikely, but possible). by Neal Norwitz · 18 years ago
  99. 3cb31ac cpathname could be NULL if it was longer than MAXPATHLEN. Don't try by Neal Norwitz · 18 years ago
  100. df6a649 Move/copy assert for tstate != NULL before first use. by Neal Norwitz · 18 years ago