1. b5b5a26 Fix SF bug #557436, TclError is a str should be an Exception by Neal Norwitz · 22 years ago
  2. 3e12905 Remove unused static function by Neal Norwitz · 22 years ago
  3. 84271bb SF #558432: Prevent Annoying ' ' from readline (Holker Krekel). by Guido van Rossum · 22 years ago
  4. 8b6b491 The logreader object did not always refill the input buffer correctly by Neil Schemenauer · 22 years ago
  5. e85ee8d Issue an explicit error when we can't find an appropriate type for UINT4. by Guido van Rossum · 22 years ago
  6. 1e1542f This is patch by Michael W. Hudson · 22 years ago
  7. 34f20ea This is patch by Michael W. Hudson · 22 years ago
  8. 2d3b986 Disambiguate the grammar for backtick. by Guido van Rossum · 22 years ago
  9. c9ca5c8 Whitespace normalization. by Tim Peters · 22 years ago
  10. a2b11ec Add IS_TRACKED and IS_MOVED macros. This makes the logic a little more clear. by Neil Schemenauer · 22 years ago
  11. 1755ad9 array_tounicode isn't defined in --disable-unicode builds... by Michael W. Hudson · 22 years ago
  12. d6f2267 Added degrees() and radians() to mathmodule. Closes patch 552452 and by Raymond Hettinger · 22 years ago
  13. 000e37c Patch #551011: Fix compilation problems with Cygwin. by Martin v. Löwis · 22 years ago
  14. 2b41b0d Rename posix_WCONTINUED to posix_WIFCONTINUED, call WIFCONTINUED inside, by Martin v. Löwis · 22 years ago
  15. 2880ae5 Move all data for a single generation into a structure. The set of by Neil Schemenauer · 22 years ago
  16. b9132a2 Indicate delayed initialization of slots. Suggested by tim.one. by Martin v. Löwis · 22 years ago
  17. edbffc1 Patch #551009: Initialize array type dynamically. by Martin v. Löwis · 22 years ago
  18. c6a7d7e Guard gettext and friends with HAVE_LIBINTL_H. Fixes #549907. by Martin v. Löwis · 22 years ago
  19. 0ebacc8 Pickler_clear_memo(): convert to METH_NOARGS. by Fred Drake · 22 years ago
  20. a883a3d See discussion at SF bug 547537. by Guido van Rossum · 22 years ago
  21. fa8efab _PyObject_GC_New: Could call PyObject_INIT with a NULL 1st argument. by Tim Peters · 22 years ago
  22. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 22 years ago
  23. d95efe4 Check for overflow errors in setrlimit(), and reflow a long line. by Jeremy Hylton · 22 years ago
  24. 106c1a0 WCOREDUMP(), WIFCONTINUED(), WCONTINUED, WUNTRACED: New. by Fred Drake · 22 years ago
  25. 8388895 SF patch [ 545523 ] patch for 514433 bsddb.dbopen (NULL) closes SF #514433 by Anthony Baxter · 22 years ago
  26. 8ee3cd4 #546156, Remove load_false()/load_true(), they are not used by Neal Norwitz · 22 years ago
  27. 0e0ee59 #544265, Remove warnings for passing const to free() by Neal Norwitz · 22 years ago
  28. 3d94942 #546163, fix link problem on Solaris 8 for makedev when using mknod by Neal Norwitz · 22 years ago
  29. 6af3e2d Forward port of patch # 500311: Work around for buggy https servers. by Martin v. Löwis · 22 years ago
  30. 2ea2c9d Patch #546194: Check constants individually. Fixes 534143 on OpenBSD. by Martin v. Löwis · 22 years ago
  31. fdbeb5a #546155, remove posix_int() it is not used by Neal Norwitz · 22 years ago
  32. c72737e Fix SF #544995 (zlib crash on second flush call) Bug fix by mhammond. by Jeremy Hylton · 22 years ago
  33. bbeb1e6 Document the build process more precisely. Suggested by Hugh Sasse. by Martin v. Löwis · 22 years ago
  34. 4d1e64b posix_fildes(): New helper: run a function that takes a file descriptor by Fred Drake · 22 years ago
  35. 726e013 Remove unused variable reported by Walter Dörwald by Neal Norwitz · 22 years ago
  36. 06a83e9 Patch #543447: Add posix.mknod. by Martin v. Löwis · 22 years ago
  37. 88c9344 initpwd(): Clean up initialization, avoid PyModule_GetDict(). by Fred Drake · 22 years ago
  38. af3e8de First stab at rationalizing the PyMem_ API. Mixing PyObject_xyz with by Tim Peters · 22 years ago
  39. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  40. fec4eb1 Allow PyObject_Del to be used as a function designator. Provide binary by Neil Schemenauer · 22 years ago
  41. 8ab04b4 Got rid of ifdefs for long-obsolete GUSI versions. by Jack Jansen · 22 years ago
  42. 1630520 Fix an obvious bug. by Thomas Heller · 22 years ago
  43. 688357e Patch #512005: getrusage() returns struct-like object. by Martin v. Löwis · 22 years ago
  44. 8fdc75b Lock methods acquire() and locked() now return bools. by Guido van Rossum · 22 years ago
  45. e276339 Implement an idea by Paul Rubin: by Guido van Rossum · 22 years ago
  46. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 22 years ago
  47. 2e1c09c Removed old Digital Creations copyright/license notices (with by Guido van Rossum · 22 years ago
  48. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  49. a2bd8d3 Remove direct manipulation of the module dict. by Fred Drake · 22 years ago
  50. e7fefbf Fix bugs: by Mark Hammond · 22 years ago
  51. b0aaec5 Convert more METH_OLDARGS & PyArg_Parse() by Neal Norwitz · 22 years ago
  52. 187ae56 Get rid of more PyArg_Parse & METH_OLDARGS. by Neal Norwitz · 22 years ago
  53. 2f6ef4c Reindent. Break long lines. Move comments before the statements. by Martin v. Löwis · 22 years ago
  54. 4baedc1 Use the PyModule_Add*() APIs instead of manipulating the module dict directly. by Fred Drake · 22 years ago
  55. 9bb7432 Remove all but one use of the module dict. by Fred Drake · 22 years ago
  56. d63e504 Remove unused variable and call to PyModule_GetDict(). by Fred Drake · 22 years ago
  57. acee69f Switch to using METH_NOARGS where possible. by Fred Drake · 22 years ago
  58. 43c9d8a Remove UNLESS. by Martin v. Löwis · 22 years ago
  59. f4e3484 Use the PyModule_*() API instead of manipulating the module dictionary directly. by Fred Drake · 22 years ago
  60. 02098fa Get rid of all METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 22 years ago
  61. dfd59e0 mpz_float() only takes one parameter now by Neal Norwitz · 22 years ago
  62. 767f835 Get rid of warnings due to changing to METH_NOARGS by Neal Norwitz · 22 years ago
  63. 28faa1b Convert METH_OLDARGS -> METH_NOARGS: remove args parameter by Neal Norwitz · 22 years ago
  64. bb2769f Revert use of METH_OLDARGS (use 0) to support 1.5.2 by Neal Norwitz · 22 years ago
  65. b82d34f Convert METH_OLDARGS -> METH_VARARGS: also PyArg_Parse -> PyArg_ParseTuple by Neal Norwitz · 22 years ago
  66. ba3a16c Remove METH_OLDARGS: by Neal Norwitz · 22 years ago
  67. 50905b5 Convert from using METH_OLDARGS to METH_NOARGS. These should be safe. by Neal Norwitz · 22 years ago
  68. 01b2694 Fix whitespace by Neal Norwitz · 22 years ago
  69. b049325 Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flags by Neal Norwitz · 22 years ago
  70. cc07ec1 Add missing typecast. by Neil Schemenauer · 22 years ago
  71. f4a4fb9 [Patch #536769] Add -Xcompiler flag for adding arguments and switches for by Andrew M. Kuchling · 22 years ago
  72. b883310 Make _PyObject_GC_UnTrack do nothing if WITH_CYCLE_GC is not defined. by Neil Schemenauer · 22 years ago
  73. 78662cf Add type cast. by Neil Schemenauer · 22 years ago
  74. ff413af This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction). by Guido van Rossum · 22 years ago
  75. f841aa6 Add a simple test of the METH_CLASS and METH_STATIC flags for type methods. by Fred Drake · 22 years ago
  76. 2e64c34 Expose C library's gettext. Fixes #516412. by Martin v. Löwis · 22 years ago
  77. 496f9e4 Don't imply XPG4 constants from CODESET presence. Fixes #534153. 2.2.2 candiate. by Martin v. Löwis · 22 years ago
  78. 4632117 Missed change METH_OLDARGS to METH_NOARGS for two aliased functions by Neal Norwitz · 22 years ago
  79. 7e78acb Remove last occurrance of PyArg_GetInt. It is deprecated, by Neal Norwitz · 22 years ago
  80. 2358425 Missed change METH_OLDARGS to METH_NOARGS for two aliased functions by Neal Norwitz · 22 years ago
  81. 3a6f978 Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS. by Neal Norwitz · 22 years ago
  82. 6d8898b Due to interaction between the MSL C library and the GUSI I/O library I can get reads from sockets to work consistently either for unbuffered binary files or for buffered binary files, but not for both:-( by Jack Jansen · 22 years ago
  83. 29ac3cb Expose RLIM_INFINITY constant. Closes SF patch 489066. by Neil Schemenauer · 22 years ago
  84. 0f75e0d Add get_history_item, get_current_history_length, and redisplay functions. by Neil Schemenauer · 22 years ago
  85. fa79c65 Match behavior of the pickle.py module more closely. by Neil Schemenauer · 22 years ago
  86. 94b866a Handle os.listdir("") case correctly on Windows. Closes bug 500705. by Neil Schemenauer · 22 years ago
  87. 1b0e4fc Use pymalloc for realloc() as well. by Neil Schemenauer · 22 years ago
  88. dcc819a Use pymalloc if it's enabled. by Neil Schemenauer · 22 years ago
  89. 3afb2d2 Remove compiler warnings on Solaris 8. Can go into 2.2.x, but not necessary. by Neal Norwitz · 22 years ago
  90. 5909402 Remove extraneous #define as per effbot's instructions in: by Neal Norwitz · 22 years ago
  91. d4233b2 Include Python.h first. Fixes #530159. by Martin v. Löwis · 22 years ago
  92. dc0b61d Verify arguments for nl_langinfo. Fixes #528879. by Martin v. Löwis · 22 years ago
  93. 1de5a72 Change the example code to prefer PyModule_Add*() instead of using the by Fred Drake · 22 years ago
  94. 193a3f6 Update docstrings to use te attribute names of the new structures returned by Fred Drake · 22 years ago
  95. 556a938 Changed C++ comment into standard comment. by Sjoerd Mullender · 22 years ago
  96. dc5a508 SF bug 525705: [2.2] underflow raise OverflowException. by Tim Peters · 22 years ago
  97. b189b07 Fix SF bug #526518 by Jeremy Hylton · 22 years ago
  98. c9ffa06 SF bug 515943: searching for data with \0 in mmap. by Tim Peters · 22 years ago
  99. aa158be Remove tp_print. by Martin v. Löwis · 22 years ago
  100. bc2e10e Python no longer compiled on Windows, due to #include file confusion by Tim Peters · 22 years ago