1. 6ca8917 [ Patch #102852 ] Make % error a bit more informative by indicates the by Andrew M. Kuchling · 24 years ago
  2. adf5410 Test for NULL returned from PyObject_NEW(). by Guido van Rossum · 24 years ago
  3. 9e8f4ea Test for NULL returned from PyObject_NEW(). by Guido van Rossum · 24 years ago
  4. f7f88b1 Add long-overdue docstrings to dict methods. by Tim Peters · 24 years ago
  5. 0e76ab2 Use METH_VARARGS instead of "1" in list method table. by Tim Peters · 24 years ago
  6. f1c7c88 Typo repair in comments. Fell for GregS's .popitem() poke. by Tim Peters · 24 years ago
  7. ea8f2bf Bring comments up to date (e.g., they still said the table had to be by Tim Peters · 24 years ago
  8. ba6ab84 Add popitem() -- SF patch #102733. by Guido van Rossum · 24 years ago
  9. 49312a5 Jeffrey D. Collins <tokeneater@users.sourceforge.net>: by Fred Drake · 24 years ago
  10. 5725d1e Backing out my changes. Improved version coming soon to a Source Forge near you! by Moshe Zadka · 24 years ago
  11. 1221e6d Only use getline() when compiling using glibc by Andrew M. Kuchling · 24 years ago
  12. 1a62750 Added .first{item,value,key}() to dictionaries. by Moshe Zadka · 24 years ago
  13. a3a3a03 Fox for SF bug #123859: %[duxXo] long formats inconsistent. by Tim Peters · 24 years ago
  14. 4b2b445 Patch #102469: Use glibc's getline() extension when reading unbounded lines by Andrew M. Kuchling · 24 years ago
  15. d7aa0f2 Update dependencies per /F. by Guido van Rossum · 24 years ago
  16. 2ccda8a SF patch #102548, fix for bug #121013, by mwh@users.sourceforge.net. by Guido van Rossum · 24 years ago
  17. ecaa777 Added _HAVE_BSDI and __APPLE__ to the list of platforms that require a by Guido van Rossum · 24 years ago
  18. 0b796fa Fixed support for containment test when a negative step is used; this by Fred Drake · 24 years ago
  19. a91e165 In the containment test, get the boundary condition right. ">" was used by Fred Drake · 24 years ago
  20. fad27ae Added 38,642 missing characters to the Unicode database (first-last by Fredrik Lundh · 24 years ago
  21. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  22. 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
  23. db810ac Donn Cave <donn@oz.net>: Fix large file support for BeOS. by Fred Drake · 24 years ago
  24. c54d190 SF bug 115831 and Ping's SF patch 101751, 0.0**-2.0 returns inf rather than by Tim Peters · 24 years ago
  25. 08b53e6 Simplify _PyTuple_Resize by not using the tuple free list and dropping by Neil Schemenauer · 24 years ago
  26. dc9100f Fix for SF bug #115987: PyInstance_HalfBinOp does not initialize the by Thomas Wouters · 24 years ago
  27. d57731f Move LONG_BIT from intobject.c to pyport.h. #error if it's already been by Tim Peters · 24 years ago
  28. e3550a6 - fix a GC bug caused by malloc() failing by Neil Schemenauer · 24 years ago
  29. 5b4c228 _PyUnicode_Fini(): Initialize the local freelist walking variable `u' by Barry Warsaw · 24 years ago
  30. 4ae8ef8 In _PyUnicode_Fini(), decref unicode_empty before tearng down the free by Guido van Rossum · 24 years ago
  31. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  32. 375732c - don't set the titlecase flag for uppercase letters (sorry, tim) by Fredrik Lundh · 24 years ago
  33. 9e7dd4c unicode database compression, step 3: by Fredrik Lundh · 24 years ago
  34. 69b58e2 unicode database compression, step 3: by Fredrik Lundh · 24 years ago
  35. 858346e Replace SIGFPE paranoia around strtod and atof. I don't believe these by Tim Peters · 24 years ago
  36. ef14d73 Fix for SF bug 110624: float literals behave inconsistently. by Tim Peters · 24 years ago
  37. 1a5e583 Untested patch by Ty Sarna to make TELL64 work on older NetBSD systems. by Guido van Rossum · 24 years ago
  38. 1e3c8cc As suggested by Toby Dickenson, setting ob_type to NULL in by Guido van Rossum · 24 years ago
  39. 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
  40. d1ba443 This patch adds a new Python C API called PyString_AsStringAndSize() by Marc-André Lemburg · 24 years ago
  41. e44e507 PyObject_SetAttr() and PyObject_GetAttr() now also accept Unicode by Marc-André Lemburg · 24 years ago
  42. 6b18491 Fix for SF bug 110688: Instance deallocation neglected to account for by Tim Peters · 24 years ago
  43. 78fc0b5 Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough. by Tim Peters · 24 years ago
  44. ce20967 Don't remove instance objects from the GC container set until we are by Neil Schemenauer · 24 years ago
  45. 3cd7604 Correctly cast the return value of realloc. by Martin v. Löwis · 24 years ago
  46. c58dbeb Correctly use realloc return value. Fixes bug #114424. by Martin v. Löwis · 24 years ago
  47. 8f42246 Fix for bug 113934. string*n and unicode*n did no overflow checking at by Tim Peters · 24 years ago
  48. df84675 changed \x to consume exactly two hex digits, also for unicode by Fredrik Lundh · 24 years ago
  49. f2b332d Cosmetic cleanup by Vladimir. by Thomas Wouters · 24 years ago
  50. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  51. bb8be93 Rewritten some pieces of PyNumber_InPlaceAdd() for clarity. by Guido van Rossum · 24 years ago
  52. cadd5b6 Fix grouping, again. This time properly :-) Sorry, guys. by Thomas Wouters · 24 years ago
  53. b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 24 years ago
  54. 04127de Add parens suggested by gcc -Wall. by Guido van Rossum · 24 years ago
  55. 1bff34a Slight performance hack that also avoids requiring the existence of thread by Fred Drake · 24 years ago
  56. c88b99c Clear errors raised by PyObject_Compare() without losing any existing by Fred Drake · 24 years ago
  57. 6b958f7 Fix grouping: this is how I intended it, misguided as I was in boolean by Thomas Wouters · 24 years ago
  58. 8ce159a Peter Schneider-Kamp <nowonder@nowonder.de>: by Fred Drake · 24 years ago
  59. 562f62a Removed compiler warning about wanting explicit grouping around && by Fred Drake · 24 years ago
  60. 9c0a99e PyOS_CheckStack() returns 1 when failing, not -1. by Guido van Rossum · 24 years ago
  61. f5e96fa Fixed a serious typo. by Marc-André Lemburg · 24 years ago
  62. 6ef68b5 Fix to bug [ Bug #111860 ] file.writelines() crashes. by Marc-André Lemburg · 24 years ago
  63. 1de2a79 Call PyErr_Clear() to clear the AttributeError raised by GetAttr. by Thomas Wouters · 24 years ago
  64. e289e0b Support for the in-place operations introduced by augmented assignment. Only by Thomas Wouters · 24 years ago
  65. e266e42 Addendum to previous change: now that 'f' is not unconditionally by Thomas Wouters · 24 years ago
  66. bf6cfa5 Add extra check on whether 'tp_as_number' is still non-NULL after coercion, by Thomas Wouters · 24 years ago
  67. d49cbe1 Added PyOS_CheckStack call to PyObject_Compare by Jack Jansen · 24 years ago
  68. e979160 Added include for limits.h by Jack Jansen · 24 years ago
  69. ce4dc41 PyUnicode_AsUTF8String(): /F picks up what I missed: the local var by Barry Warsaw · 24 years ago
  70. 2dd4abf PyUnicode_AsUTF8String(): Don't need to explicitly incref str since by Barry Warsaw · 24 years ago
  71. 9d23a4e make_pair(): When comparing the pointers, they must be cast to integer by Barry Warsaw · 24 years ago
  72. 67c1a04 PyFloat_FromString(): Move s_buffer[] up to the top-level function by Barry Warsaw · 24 years ago
  73. dc55d71 PyInstance_DoBinOp(): When comparing the pointers, they must be cast by Barry Warsaw · 24 years ago
  74. 1d75a79 Apply SF patch #101029: call __getitem__ with a proper slice object if there by Thomas Wouters · 24 years ago
  75. 4df762f Insure properly identifies the `interned' dictionary as leaking at by Barry Warsaw · 24 years ago
  76. 1582a3a Updated comment by Andrew M. Kuchling · 24 years ago
  77. 39dce29 Fix for http://sourceforge.net/bugs/?func=detailbug&bug_id=111866&group_id=5470. by Tim Peters · 24 years ago
  78. b752077 Fixed a couple of instances where a 0-length string was being by Marc-André Lemburg · 24 years ago
  79. a584664 Check for overflow in list object insertion and raise OverflowError. by Trent Mick · 24 years ago
  80. 20abf57 Clean up warning from Monterey compiler. by Trent Mick · 24 years ago
  81. a248fb6 Clean up a warning on Win64. The downcast of the strlen size_t by Trent Mick · 24 years ago
  82. 8a74e5f Add the current Win64 compiler to the list of those that need the by Trent Mick · 24 years ago
  83. f29f47b Add largefile support for Linux64 and WIn64. Add test_largefile and some minor by Trent Mick · 24 years ago
  84. 1d3e239 Fix missing decrements of the recursive counter in PyObject_Compare(). by Vladimir Marangozov · 24 years ago
  85. 164452c Barry's patch to implement the new setdefault() method. by Guido van Rossum · 24 years ago
  86. e503437 Removing UTF-16 aware Unicode comparison code. This kind of compare by Marc-André Lemburg · 24 years ago
  87. cf703f0 Removing warnings found by gcc -Wall by Moshe Zadka · 24 years ago
  88. 72d421b Boost buffer sizes in the absence of snprintf on Windows. by Tim Peters · 24 years ago
  89. c76e0e5 snprintf() is not portable, so continue to use sprintf() until a portable by Fred Drake · 24 years ago
  90. bff879c This patch finalizes the move from UTF-8 to a default encoding in by Marc-André Lemburg · 24 years ago
  91. 2b83b46 Remove the tp_print handler. by Fred Drake · 24 years ago
  92. c4a19e7 Remobe beopen/cnri/cwi copyrights, according to CNRI instructions. by Guido van Rossum · 24 years ago
  93. 16b1ad9 Changing the CNRI copyright notice according to CNRI's instructions. by Guido van Rossum · 24 years ago
  94. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  95. 334fb89 Use 'void' directly instead of the ANY #define, now that all code is ANSI C. by Thomas Wouters · 24 years ago
  96. c307352 ANSIfy functions that were hiding inside a macro. by Thomas Wouters · 24 years ago
  97. a534594 ANSIfication: remove very-old-varargs code, fix function declarations so by Thomas Wouters · 24 years ago
  98. 7889010 Miscelaneous ANSIfications. I'm assuming here 'main' should take (int, by Thomas Wouters · 24 years ago
  99. 9542f48 Fixed problems with UTF error reporting macros and some formatting bugs. by Marc-André Lemburg · 24 years ago
  100. cf5f358 Restore PyXXX_Length() APIs for binary compatibility. by Marc-André Lemburg · 24 years ago