1. 3a645e4 Added checks to prevent PyUnicode_Count() from dumping core by Marc-André Lemburg · 24 years ago
  2. d6a9e84 Committing PEP 232, function attribute feature, approved by Guido. by Barry Warsaw · 24 years ago
  3. 65e0b99 SF patch #103158 by Greg Ball: Don't do unsafe arithmetic in xrange object. by Guido van Rossum · 24 years ago
  4. 142297a Speed getline_via_fgets(), by supplying two "fast paths", although one is by Tim Peters · 24 years ago
  5. f29b64d Use the "MS" getline hack (fgets()) by default on non-get_unlocked by Tim Peters · 24 years ago
  6. e07d5cf Jeff Epler's patch adding an xreadlines() method. (It just imports by Guido van Rossum · 24 years ago
  7. dcf5715 Tsk, tsk, tsk. Treat FreeBSD the same as the other BSDs when defining by Guido van Rossum · 24 years ago
  8. 010b0cc Fix a silly bug in float_pow. Sorry Tim. by Neil Schemenauer · 24 years ago
  9. 1c73323 A few reformats; no logic changes. by Tim Peters · 24 years ago
  10. 8628206 Let's hope that three time's a charm... by Guido van Rossum · 24 years ago
  11. 15b8385 Fiddled ms_getline_hack after talking w/ Guido: made clearer that the by Tim Peters · 24 years ago
  12. 86821b2 MS Win32 .readline() speedup, as discussed on Python-Dev. This is a tricky by Tim Peters · 24 years ago
  13. 4ddf0a0 Tim noticed that I had botched get_line_raw(). Looking again, I by Guido van Rossum · 24 years ago
  14. ec233e5 This patch adds a new feature to the builtin charmap codec: by Marc-André Lemburg · 24 years ago
  15. 1187aa4 Restructured get_line() for clarity and speed. by Guido van Rossum · 24 years ago
  16. 5ed85ec Changes for PEP 208. PyObject_Compare has been rewritten. Instances no by Neil Schemenauer · 24 years ago
  17. ba872e2 Make long a new style number type. Sequence repeat is now done here by Neil Schemenauer · 24 years ago
  18. 139e72a Make int a new style number type. Sequence repeat is now done here now as well. by Neil Schemenauer · 24 years ago
  19. 32117e5 Make float a new style number type. by Neil Schemenauer · 24 years ago
  20. 29bfc07 Make instances a new style number type. See PEP 208 for details. Instance by Neil Schemenauer · 24 years ago
  21. 5a1f015 Massive changes as per PEP 208. Read it for details. by Neil Schemenauer · 24 years ago
  22. 1fb6088 dict_update has two boundary conditions: a.update(a) and a.update({}) by Jeremy Hylton · 24 years ago
  23. db60bb5 fix leak by Jeremy Hylton · 24 years ago
  24. a866df8 This patch changes the default behaviour of the builtin charmap by Marc-André Lemburg · 24 years ago
  25. 10e31cf Add garbage collection for module objects. Closes patch #102939 and by Neil Schemenauer · 24 years ago
  26. e7e190e Make the indentation consistently use tabs instead of using spaces just by Fred Drake · 24 years ago
  27. f947ffe Patch #102940: use only printable Unicode chars in reporting by Andrew M. Kuchling · 24 years ago
  28. 932af11 Patch #102868 from cgw: fix memory leak when an EOF is encountered by Andrew M. Kuchling · 24 years ago
  29. cda4f9a Fix off-by-one error in split_substring(). Fixes SF bug #122162. by Guido van Rossum · 24 years ago
  30. 6ca8917 [ Patch #102852 ] Make % error a bit more informative by indicates the by Andrew M. Kuchling · 24 years ago
  31. adf5410 Test for NULL returned from PyObject_NEW(). by Guido van Rossum · 24 years ago
  32. 9e8f4ea Test for NULL returned from PyObject_NEW(). by Guido van Rossum · 24 years ago
  33. f7f88b1 Add long-overdue docstrings to dict methods. by Tim Peters · 24 years ago
  34. 0e76ab2 Use METH_VARARGS instead of "1" in list method table. by Tim Peters · 24 years ago
  35. f1c7c88 Typo repair in comments. Fell for GregS's .popitem() poke. by Tim Peters · 24 years ago
  36. ea8f2bf Bring comments up to date (e.g., they still said the table had to be by Tim Peters · 24 years ago
  37. ba6ab84 Add popitem() -- SF patch #102733. by Guido van Rossum · 24 years ago
  38. 49312a5 Jeffrey D. Collins <tokeneater@users.sourceforge.net>: by Fred Drake · 24 years ago
  39. 5725d1e Backing out my changes. Improved version coming soon to a Source Forge near you! by Moshe Zadka · 24 years ago
  40. 1221e6d Only use getline() when compiling using glibc by Andrew M. Kuchling · 24 years ago
  41. 1a62750 Added .first{item,value,key}() to dictionaries. by Moshe Zadka · 24 years ago
  42. a3a3a03 Fox for SF bug #123859: %[duxXo] long formats inconsistent. by Tim Peters · 24 years ago
  43. 4b2b445 Patch #102469: Use glibc's getline() extension when reading unbounded lines by Andrew M. Kuchling · 24 years ago
  44. d7aa0f2 Update dependencies per /F. by Guido van Rossum · 24 years ago
  45. 2ccda8a SF patch #102548, fix for bug #121013, by mwh@users.sourceforge.net. by Guido van Rossum · 24 years ago
  46. ecaa777 Added _HAVE_BSDI and __APPLE__ to the list of platforms that require a by Guido van Rossum · 24 years ago
  47. 0b796fa Fixed support for containment test when a negative step is used; this by Fred Drake · 24 years ago
  48. a91e165 In the containment test, get the boundary condition right. ">" was used by Fred Drake · 24 years ago
  49. fad27ae Added 38,642 missing characters to the Unicode database (first-last by Fredrik Lundh · 24 years ago
  50. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  51. 53f3d4a [ Bug #116174 ] using %% in cstrings sometimes fails with unicode paramsFix for the bug reported in Bug #116174: "%% %s" % u"abc" failed due by Marc-André Lemburg · 24 years ago
  52. db810ac Donn Cave <donn@oz.net>: Fix large file support for BeOS. by Fred Drake · 24 years ago
  53. c54d190 SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather than by Tim Peters · 24 years ago
  54. 08b53e6 Simplify _PyTuple_Resize by not using the tuple free list and dropping by Neil Schemenauer · 24 years ago
  55. dc9100f Fix for SF bug #115987: PyInstance_HalfBinOp does not initialize the by Thomas Wouters · 24 years ago
  56. d57731f Move LONG_BIT from intobject.c to pyport.h. #error if it's already been by Tim Peters · 24 years ago
  57. e3550a6 - fix a GC bug caused by malloc() failing by Neil Schemenauer · 24 years ago
  58. 5b4c228 _PyUnicode_Fini(): Initialize the local freelist walking variable `u' by Barry Warsaw · 24 years ago
  59. 4ae8ef8 In _PyUnicode_Fini(), decref unicode_empty before tearng down the free by Guido van Rossum · 24 years ago
  60. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  61. 375732c - don't set the titlecase flag for uppercase letters (sorry, tim) by Fredrik Lundh · 24 years ago
  62. 9e7dd4c unicode database compression, step 3: by Fredrik Lundh · 24 years ago
  63. 69b58e2 unicode database compression, step 3: by Fredrik Lundh · 24 years ago
  64. 858346e Replace SIGFPE paranoia around strtod and atof. I don't believe these by Tim Peters · 24 years ago
  65. ef14d73 Fix for SF bug 110624: float literals behave inconsistently. by Tim Peters · 24 years ago
  66. 1a5e583 Untested patch by Ty Sarna to make TELL64 work on older NetBSD systems. by Guido van Rossum · 24 years ago
  67. 1e3c8cc As suggested by Toby Dickenson, setting ob_type to NULL in by Guido van Rossum · 24 years ago
  68. 38fd5b6 Derived from Martin's SF patch 110609: support unbounded ints in %d,i,u,x,X,o formats. by Tim Peters · 24 years ago
  69. d1ba443 This patch adds a new Python C API called PyString_AsStringAndSize() by Marc-André Lemburg · 24 years ago
  70. e44e507 PyObject_SetAttr() and PyObject_GetAttr() now also accept Unicode by Marc-André Lemburg · 24 years ago
  71. 6b18491 Fix for SF bug 110688: Instance deallocation neglected to account for by Tim Peters · 24 years ago
  72. 78fc0b5 Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough. by Tim Peters · 24 years ago
  73. ce20967 Don't remove instance objects from the GC container set until we are by Neil Schemenauer · 24 years ago
  74. 3cd7604 Correctly cast the return value of realloc. by Martin v. Löwis · 24 years ago
  75. c58dbeb Correctly use realloc return value. Fixes bug #114424. by Martin v. Löwis · 24 years ago
  76. 8f42246 Fix for bug 113934. string*n and unicode*n did no overflow checking at by Tim Peters · 24 years ago
  77. df84675 changed \x to consume exactly two hex digits, also for unicode by Fredrik Lundh · 24 years ago
  78. f2b332d Cosmetic cleanup by Vladimir. by Thomas Wouters · 24 years ago
  79. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  80. bb8be93 Rewritten some pieces of PyNumber_InPlaceAdd() for clarity. by Guido van Rossum · 24 years ago
  81. cadd5b6 Fix grouping, again. This time properly :-) Sorry, guys. by Thomas Wouters · 24 years ago
  82. b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 24 years ago
  83. 04127de Add parens suggested by gcc -Wall. by Guido van Rossum · 24 years ago
  84. 1bff34a Slight performance hack that also avoids requiring the existence of thread by Fred Drake · 24 years ago
  85. c88b99c Clear errors raised by PyObject_Compare() without losing any existing by Fred Drake · 24 years ago
  86. 6b958f7 Fix grouping: this is how I intended it, misguided as I was in boolean by Thomas Wouters · 24 years ago
  87. 8ce159a Peter Schneider-Kamp <nowonder@nowonder.de>: by Fred Drake · 24 years ago
  88. 562f62a Removed compiler warning about wanting explicit grouping around && by Fred Drake · 24 years ago
  89. 9c0a99e PyOS_CheckStack() returns 1 when failing, not -1. by Guido van Rossum · 24 years ago
  90. f5e96fa Fixed a serious typo. by Marc-André Lemburg · 24 years ago
  91. 6ef68b5 Fix to bug [ Bug #111860 ] file.writelines() crashes. by Marc-André Lemburg · 24 years ago
  92. 1de2a79 Call PyErr_Clear() to clear the AttributeError raised by GetAttr. by Thomas Wouters · 24 years ago
  93. e289e0b Support for the in-place operations introduced by augmented assignment. Only by Thomas Wouters · 24 years ago
  94. e266e42 Addendum to previous change: now that 'f' is not unconditionally by Thomas Wouters · 24 years ago
  95. bf6cfa5 Add extra check on whether 'tp_as_number' is still non-NULL after coercion, by Thomas Wouters · 24 years ago
  96. d49cbe1 Added PyOS_CheckStack call to PyObject_Compare by Jack Jansen · 24 years ago
  97. e979160 Added include for limits.h by Jack Jansen · 24 years ago
  98. ce4dc41 PyUnicode_AsUTF8String(): /F picks up what I missed: the local var by Barry Warsaw · 24 years ago
  99. 2dd4abf PyUnicode_AsUTF8String(): Don't need to explicitly incref str since by Barry Warsaw · 24 years ago
  100. 9d23a4e make_pair(): When comparing the pointers, they must be cast to integer by Barry Warsaw · 24 years ago