1. 4c6c765 Move three variables that are only used inside an if block into the block, by Walter Dörwald · 22 years ago
  2. bf73db8 Fix PEP 293 related problems with --disable-unicode builds by Walter Dörwald · 22 years ago
  3. 89350a4 Remove _Py_ResetReferences. Fixes bug #529750 "Circular reference makes by Neil Schemenauer · 22 years ago
  4. addfe0c Make private functions static so we don't pollute the namespace by Neal Norwitz · 22 years ago
  5. 5f26dda Restore to ANSI C. by Michael W. Hudson · 22 years ago
  6. 006c752 This is Richie Hindle's patch: by Michael W. Hudson · 22 years ago
  7. 019a78e Assorted patches from Armin Rigo: by Michael W. Hudson · 22 years ago
  8. dde800e Got rid of the python.rsrc resource file. The error message strings and by Jack Jansen · 22 years ago
  9. cbd6fb9 Handle really big steps in extended slices. by Michael W. Hudson · 22 years ago
  10. 40cac73 Fix SF # 551504, python -v sometimes fails to find init (HPUX) by Neal Norwitz · 22 years ago
  11. 566f6af Patch #512981: Update readline input stream on sys.stdin/out change. by Martin v. Löwis · 22 years ago
  12. 8fce2ef Made MacOS.Error a class style exception (at last!). by Jack Jansen · 22 years ago
  13. 8ed0204 If we have a filename and __main__.__file__ hasn't already been set, by Fred Drake · 22 years ago
  14. 8696ebc Add os.path.supports_unicode_filenames for all platforms, by Mark Hammond · 22 years ago
  15. 92e4dd8 s/_alloca/alloca/g; Windows doesn't need the former, at least not unless by Tim Peters · 22 years ago
  16. a7a76d3 Patch #618347: Work around Solaris 2.6 pthread.h bug. Will backport to 2.2. by Martin v. Löwis · 22 years ago
  17. 3d61a06 Fix [ 616716 ] Bug in PyErr_SetExcFromWindows by Mark Hammond · 22 years ago
  18. da7efaa Fix errors to pep277 checkin identified by Neal Norwitz. by Mark Hammond · 22 years ago
  19. ca803a0 One last tweak to the tracing machinery: this actually computes what I intended by Michael W. Hudson · 22 years ago
  20. 3ae3315 Clamp code objects' tp_compare result to [-1, 1]. by Michael W. Hudson · 22 years ago
  21. c2e85bd Patch 594001: PEP 277 - Unicode file name support for Windows NT. by Mark Hammond · 22 years ago
  22. fb4d6ec Fix for the recursion_level bug Armin Rigo reported in sf by Michael W. Hudson · 22 years ago
  23. eb42b02 Add encoding name in LookupError. Fixes #615013. Will backport to 2.2. by Martin v. Löwis · 22 years ago
  24. 2c96ab2 Two more cases of switch(PySequence_Size()) without checking for case -1. by Neal Norwitz · 22 years ago
  25. 98b2a42 Fix SF bug 610610 (reported by Martijn Pieters, diagnosed by Neal Norwitz). by Guido van Rossum · 22 years ago
  26. 02ff6a9 A slight change to SET_LINENO-less tracing. by Michael W. Hudson · 22 years ago
  27. 066a8df missed this one on the previous multi-file checkin - see by Skip Montanaro · 22 years ago
  28. 602d451 Add a custom __str__ method to KeyError that applies repr() to the by Guido van Rossum · 22 years ago
  29. 99dba27 Bump default check interval to 100 instructions. Computers are much faster by Skip Montanaro · 22 years ago
  30. d581d77 replace thread state objects' ticker and checkinterval fields with two by Skip Montanaro · 22 years ago
  31. 8e790e7 expose PYTHON_API_VERSION macro as sys.api_version. Closes patch # 601456. by Skip Montanaro · 22 years ago
  32. f7bcd1d Check string for NULL before using it to format the error message. by Walter Dörwald · 22 years ago
  33. 70bb0d4 Removed bogus PyUnicodeTranslateError_GetEncoding, as by Walter Dörwald · 22 years ago
  34. fd08e4c Limit the length of attribute names in exception messages by Walter Dörwald · 22 years ago
  35. 3aeb632 PEP 293 implemention (from SF patch http://www.python.org/sf/432401) by Walter Dörwald · 22 years ago
  36. f689492 Because MWH changed the bytecode again, moved the magic number *back* by Guido van Rossum · 22 years ago
  37. 53d58bb Further SET_LINENO reomval fixes. See comments in patch #587933. by Michael W. Hudson · 22 years ago
  38. 4c01342 execfile should call PyErr_SetFromErrnoWithFilename instead of by Peter Schneider-Kamp · 22 years ago
  39. e20131e Fix a couple of whitespace consistency nits. by Fred Drake · 22 years ago
  40. 6049cb8 Simplify, and avoid PyModule_GetDict() while we're at it. by Fred Drake · 22 years ago
  41. 86c659a The error messages in err_args() -- which is only called when the by Guido van Rossum · 22 years ago
  42. c230b0e Comment typo repair. by Michael W. Hudson · 22 years ago
  43. 62897c5 My patch #597221. Use f_lasti more consistently. by Michael W. Hudson · 22 years ago
  44. d8dbf84 Add a warning comment to the LOAD_GLOBAL inline code. by Guido van Rossum · 22 years ago
  45. 3a4dfc8 Another ugly inlining hack, expanding the two PyDict_GetItem() calls by Guido van Rossum · 22 years ago
  46. 192690e Inline fast_cfunction() in new call_function(). by Jeremy Hylton · 22 years ago
  47. e8c0432 Move body of CALL_FUNCTION opcode into helper function. by Jeremy Hylton · 22 years ago
  48. c13f724 Streamline the fast track for CFunction calls a bit more: there was by Guido van Rossum · 22 years ago
  49. c7903a1 A nice little speed-up for filter(): by Guido van Rossum · 22 years ago
  50. b716462 Add warnings for arguments named None. All set. (I could add a by Guido van Rossum · 22 years ago
  51. 63dd79a Add warning for None used as keyword argument name in function call. by Guido van Rossum · 22 years ago
  52. 3ac99d4 Add warnings for assignment or deletion of variables and attributes by Guido van Rossum · 22 years ago
  53. b081e0c Minor cleanup of parsename() and parsestr(): the 'struct compiling *' by Guido van Rossum · 22 years ago
  54. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  55. 118ec70 provide less mysterious error messages when seeing end-of-line in by Skip Montanaro · 22 years ago
  56. 233cc59 Py_InitModule4(): Accept NULL for the 'methods' argument. This makes by Fred Drake · 22 years ago
  57. 9f00739 Added a FutureWarning for constructs that will change semantically in by Barry Warsaw · 22 years ago
  58. 31d2df5 Patch #550192: Set softspace to 0 in raw_input(). by Martin v. Löwis · 22 years ago
  59. 8a8da79 Patch #505705: Remove eval in pickle and cPickle. by Martin v. Löwis · 22 years ago
  60. 715eca9 Use PyErr_WarnExplicit() to warn about hex/oct constants, so the by Guido van Rossum · 22 years ago
  61. 3cb8e54 Reset errno to zero after calling PyErr_Warn(). It can potentially do by Guido van Rossum · 22 years ago
  62. cc8764c Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. by Marc-André Lemburg · 22 years ago
  63. 078151d Implement stage B0 of PEP 237: add warnings for operations that by Guido van Rossum · 22 years ago
  64. 72bc456 Add weakref support generator-iterators. Part of fixing SF bug #591704. by Fred Drake · 22 years ago
  65. 2863c10 Use Py_FatalError instead of abort. by Martin v. Löwis · 22 years ago
  66. 019934b Fix PEP 263 code --without-unicode. Fixes #591943. by Martin v. Löwis · 22 years ago
  67. 496e658 get rid of GETNAMEV macro - use GETITEM directly by Skip Montanaro · 22 years ago
  68. 04d80f8 small speedup for constant and name access see sf #506436 by Skip Montanaro · 22 years ago
  69. 00f1e3f Patch #534304: Implement phase 1 of PEP 263. by Martin v. Löwis · 22 years ago
  70. 80d4e2a SF patch #578297: by Andrew MacIntyre · 22 years ago
  71. 21ed16a Added one call to Py_Main(), for OSX framework builds only, that will get the by Jack Jansen · 22 years ago
  72. 37d5a15 Whitespace normalization. by Thomas Heller · 22 years ago
  73. 3e1c18a Fix SF 588452: debug build crashes on marshal.dumps([128] * 1000). by Thomas Heller · 22 years ago
  74. 085358a New functions for extension writers on Windows: by Thomas Heller · 22 years ago
  75. a290527 Excise DL_IMPORT/EXPORT from object.h, and related files. This patch by Mark Hammond · 22 years ago
  76. 75d2d94 Patch #554716: Use __va_copy where available. by Martin v. Löwis · 22 years ago
  77. 21ee37c remove spurious SET_LINENO from com_list_for and com_list_if. All they do by Skip Montanaro · 22 years ago
  78. 8235ea1 Land Patch [ 566100 ] Rationalize DL_IMPORT and DL_EXPORT. by Mark Hammond · 22 years ago
  79. e21262c Fix bug [ 549731 ] Unicode encoders appears to leak references. by Mark Hammond · 22 years ago
  80. 04e7032 SF patch 552161 - Py_AddPendingCall doesn't unlock on fail (Daniel Dunbar) by Guido van Rossum · 22 years ago
  81. 0c32279 Removed more stray instances of statichere, but left _sre.c alone. by Tim Peters · 22 years ago
  82. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  83. a64295b There's no need for generators to define an explicit next() method. by Tim Peters · 22 years ago
  84. a81d220 SF patch # 580411, move frame macros from frameobject.h into ceval.c by Neal Norwitz · 22 years ago
  85. 76c81ee Don't stomp on an exception set by PyCell_Get() by Jeremy Hylton · 22 years ago
  86. 34b2569 _Py_AskYesNo(): Removed this function. It was defined only in a by Tim Peters · 22 years ago
  87. 6b17abf Fix SF Bug 564931: compile() traceback must include filename. by Thomas Heller · 22 years ago
  88. 7c321a8 The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added by Tim Peters · 22 years ago
  89. 4be93d0 Rearranged and added comments to object.h, to clarify many things by Tim Peters · 22 years ago
  90. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  91. e739a0d Got rid of an extraneous semicolon. by Jack Jansen · 22 years ago
  92. bd23289 Silence compiler warning by Jeremy Hylton · 22 years ago
  93. 0ae0c07 SF 569257 -- Name mangle double underscored variable names in __slots__. by Raymond Hettinger · 22 years ago
  94. ba3ff1b Fix the docstring for sys.getrefcount(). Closes SF bug #571759. by Fred Drake · 22 years ago
  95. 8311518 PyModule_AddObject(): Added missing exceptions. Closes SF bug #523473. by Fred Drake · 22 years ago
  96. 3430d70 Apply diff2.txt from SF patch http://www.python.org/sf/566999 by Walter Dörwald · 22 years ago
  97. bea18cc SF patch 568629 by Oren Tirosh: types made callable. by Guido van Rossum · 22 years ago
  98. cb4d7ce Now FOR_LOOP is gone, loop_subscript can go too. by Michael W. Hudson · 22 years ago
  99. eda5a8e Fix SF bug # 561858 Assertion with very long lists by Neal Norwitz · 22 years ago
  100. 7fdcb41 Fix SF bug # 561858 Assertion with very long lists by Neal Norwitz · 22 years ago