1. 174efc9 Use PyOS_setsig() instead of directly calling signal() or sigaction(). by Guido van Rossum · 24 years ago
  2. d2cd7ad Use typedef PyOS_sighandler_t and APIs PyOS_getsig() and by Guido van Rossum · 24 years ago
  3. 78fc0b5 Fixed legit gripe from c.l.py that math.fmod docs aren't confusing enough. by Tim Peters · 24 years ago
  4. 1ac526d Add a constant "library" to the module which names the library used, by Fred Drake · 24 years ago
  5. e64572b Some systems need -lucb to compile the mmap module. Add a comment to by Fred Drake · 24 years ago
  6. 3b2aedb Py_Main(), usage(), usage_mid: Add -h and -V flags to print the usage by Barry Warsaw · 24 years ago
  7. 2af72d5 Use symbolic constants for allowable short ranges. by Martin v. Löwis · 24 years ago
  8. 0bb44a4 Closes SF bug 113894: on Windows, things like os.listdir("k:") and by Tim Peters · 24 years ago
  9. 66de549 Check range for bytes and shorts. Closes bug #110845. by Martin v. Löwis · 24 years ago
  10. ae90f8d Trent Mick points out that the BSD DB also provides an ndbm compatibility by Fred Drake · 24 years ago
  11. d94f707 Use the configure support to determine which ndbm.h header to include. by Fred Drake · 24 years ago
  12. df23f33 Add several dl.RTLD_ constants. Closes bug 110842. by Martin v. Löwis · 24 years ago
  13. 0ac9b07 Simplify some of the code. Use PyErr_Format() instead of sprintf(), etc. by Fred Drake · 24 years ago
  14. bb30734 General cleanup in preparation for a bugfix: removed unused code, useless by Tim Peters · 24 years ago
  15. ed33c9a autodetect presence of libdb - this allows bsddbmodule to be built by Skip Montanaro · 24 years ago
  16. ebba420 Oops. Jim's fix didn't. This one does -- I tested it a bit better this time! by Guido van Rossum · 24 years ago
  17. c84d8bd Simple fix from Jin Fulton to avoid returning a half-initialized by Guido van Rossum · 24 years ago
  18. 3263dc2b compromise value for threshold0: not too high, not too low by Jeremy Hylton · 24 years ago
  19. a22865e Instead of printing all 9 lines of copyright info, print by Guido van Rossum · 24 years ago
  20. 510c97b return -1 for undefined groups (as implemented in 1.5.2) instead of by Fredrik Lundh · 24 years ago
  21. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  22. 38d45b7 The second argument to start_new_thread() is not a tuple, as pointed by Guido van Rossum · 24 years ago
  23. 9acdd3a Repaired damaged comments, and extra spaces in fatal error msgs we'd better by Tim Peters · 24 years ago
  24. 7c55404 Move the Py_DECREF(x) after the error: label so that we don't leak x by Guido van Rossum · 24 years ago
  25. 9bfd2bf Do the absolute minimal amount of modifications to eradicate by Barry Warsaw · 24 years ago
  26. 736aa32 Fix test_popen2 on Windows, recently broken by changes to the dict(!) by Tim Peters · 24 years ago
  27. 045946d set the default threshold much higher we don't need to run gc frequently by Jeremy Hylton · 24 years ago
  28. 51ee09b Don't call Py_FatalError in module initialization by Jeremy Hylton · 24 years ago
  29. b709df3 refactor __del__ exception handler into PyErr_WriteUnraisable by Jeremy Hylton · 24 years ago
  30. b9ce5ad Add three prototypes for functions in history.h to shut up gcc -Wall. by Guido van Rossum · 24 years ago
  31. b92b627 Moodules -> Modules. by Guido van Rossum · 24 years ago
  32. 6cfdffb Minor adjustment to Setup.in message, based on comment from Barry Warsaw. by Fred Drake · 24 years ago
  33. a3895c0 This module has a poor name, since it can be used under FreeBSD and by Jeremy Hylton · 24 years ago
  34. a54436f If Setup is older than Setup.in, issue a bold warning that the Setup may by Fred Drake · 24 years ago
  35. c9cb847 Skip Montanaro <skip@mojam.com>: by Fred Drake · 24 years ago
  36. 0625777 apply patch #101362 by Vladimir Marangozov by Jeremy Hylton · 24 years ago
  37. 8ce159a Peter Schneider-Kamp <nowonder@nowonder.de>: by Fred Drake · 24 years ago
  38. c818d53 Remove one compiler warning found with -Wstrict-prototypes. by Fred Drake · 24 years ago
  39. e67d8e5 oops. accidentally reintroduced a memory leak. put the bugfix back. by Fredrik Lundh · 24 years ago
  40. 33accc1 don't mistake memory errors (including reaching the recursion limit) by Fredrik Lundh · 24 years ago
  41. 0df002c Add three new APIs: PyRun_AnyFileEx(), PyRun_SimpleFileEx(), by Guido van Rossum · 24 years ago
  42. fee3a2d Charles Waldman's patch to reinitialize the interpreter lock after a by Guido van Rossum · 24 years ago
  43. 124af7c Fixed this problem. by Thomas Wouters · 24 years ago
  44. 6d7c442 Try to supply a prototype for the module init function but avoid by Tim Peters · 24 years ago
  45. 28f739a Update the parser module to support augmented assignment. by Fred Drake · 24 years ago
  46. 6f98762 initpyexpat(): Code cleanup; makes it more robust and reduces warnings. by Fred Drake · 24 years ago
  47. 239f836 Not every OS that support poll seems to support POLLMSG. by Sjoerd Mullender · 24 years ago
  48. cf96dc8 Add interface to poll() system call (SF patch #100852) by Andrew M. Kuchling · 24 years ago
  49. 65f39ad Adjust the name for the socket module in the SSL line. by Thomas Wouters · 24 years ago
  50. 9ed49e9 Fix the evil booboos. ;( Causes discussed with Jeremy offline. by Fred Drake · 24 years ago
  51. c23b523 Remove the Py_FatalError() from initpyexpat(); the Guido has decreed by Fred Drake · 24 years ago
  52. 85bf3bb validate_listmaker(): Revise to match Skip's latest changes to the by Fred Drake · 24 years ago
  53. 72b93ec Nuked unused variable. by Tim Peters · 24 years ago
  54. cff283c Update to reflect recent grammar changes (list comprehensions, extended by Fred Drake · 24 years ago
  55. a98e92b Add alias for old function name -- removing it broke Alexei Gilchrist's cfm by Andrew M. Kuchling · 24 years ago
  56. f580d27 Use METH_VARARGS constant in example module. Fix comment typo by Andrew M. Kuchling · 24 years ago
  57. f28b898 Removed references to Py_FPROTO. by Sjoerd Mullender · 24 years ago
  58. f087960 ANSI-fy function headers. Not much more can be done since I don't by Barry Warsaw · 24 years ago
  59. 4ddd820 lad_dealloc(): if xp->x_fd == -1, it means the descriptor's already by Barry Warsaw · 24 years ago
  60. 152fbe8 pattern_findall(): Plug small memory leak discovered by Insure. by Barry Warsaw · 24 years ago
  61. fc4514c init_locale(): This file defines the _locale module, so the by Barry Warsaw · 24 years ago
  62. 239548f The sre test suite currently overruns the stack on Win64, Linux64, and Monterey by Trent Mick · 24 years ago
  63. b526e5f The socket module is now _socket on all platforms. by Fred Drake · 24 years ago
  64. a136d49 Remove a lot of the confusing conditional compilation from the beginning by Fred Drake · 24 years ago
  65. 56221a7 Chris Herborth <chrish@pobox.com>: Minor updates for BeOS R5. by Fred Drake · 24 years ago
  66. b59ab42 Fix new compiler warnings. Unused var in compile.c. Argsize mismatches by Tim Peters · 24 years ago
  67. 1616847 binascii_unhexlify(): Better error message, courtesy effbot. by Barry Warsaw · 24 years ago
  68. e977c21 After a brief conversation and code review with TP, adding two very by Barry Warsaw · 24 years ago
  69. 57b808d SHA_hexdigest(): A couple of small patches to this function, added by Barry Warsaw · 24 years ago
  70. 3ec0fbb md5_hexdigest(): After a brief conversation with TP, added hexdigest() by Barry Warsaw · 24 years ago
  71. 33a6da9 Fix for bug #110670 - Win32 os.listdir raises confusing errors: by Mark Hammond · 24 years ago
  72. b37a373 Patch #101032, from David Bolen: by Mark Hammond · 24 years ago
  73. 6c116dd Use safer comparisons (only matters when sizeof(int) != sizeof(size_t)). fread by Trent Mick · 24 years ago
  74. 091ec2c Add support for FreeBSD --rpath linker option; this is equivalent to by Fred Drake · 24 years ago
  75. 68933b9 Clean up compiler warning exposed by GCC's -Wall option: make sure by Fred Drake · 24 years ago
  76. 10e1bf2 remove all occurence of math.rint() from the sources by Peter Schneider-Kamp · 24 years ago
  77. 5810064 -- changed findall to return empty strings instead of None by Fredrik Lundh · 24 years ago
  78. 0d15908 Added a missing } in the USE_STACKCHECK code. by Jack Jansen · 24 years ago
  79. 7898c3e -- reset marks if repeat_one tail doesn't match by Fredrik Lundh · 24 years ago
  80. 18c2aa2 + if USE_STACKCHECK is defined, use PyOS_CheckStack to look by Fredrik Lundh · 24 years ago
  81. f9d20c3 Neil Schemenauer: GC enable(), disable(), isenabled() interface. by Vladimir Marangozov · 24 years ago
  82. cf4d8cc Removed unnecessary local variable -- gave warning on gcc -Wall by Moshe Zadka · 24 years ago
  83. 6a078ed Removing warnings discovered by gcc -Wall by Moshe Zadka · 24 years ago
  84. c4a19e7 Remobe beopen/cnri/cwi copyrights, according to CNRI instructions. by Guido van Rossum · 24 years ago
  85. 96ab465 -- added recursion limit (currently ~10,000 levels) by Fredrik Lundh · 24 years ago
  86. 16b1ad9 Changing the CNRI copyright notice according to CNRI's instructions. by Guido van Rossum · 24 years ago
  87. a1abb72 Use METH_OLDARGS instead of numeric constant 0 in method def. tables by Andrew M. Kuchling · 24 years ago
  88. e365fb8 Use METH_VARARGS instead of numeric constant 1 in method def. tables by Andrew M. Kuchling · 24 years ago
  89. 14f5158 Use METH_VARARGS instead of numeric constant 1 by Andrew M. Kuchling · 24 years ago
  90. a2214c3 Rob Hooft (Patch #101046): use PyArg_ParseTuple everywhere. by Guido van Rossum · 24 years ago
  91. 3b96d0b Fix for bug #110651 (Jitterbug PR#343): only use the low 8 bits of an octal by Andrew M. Kuchling · 24 years ago
  92. e186983 final 0.9.8 updates: by Fredrik Lundh · 24 years ago
  93. 2f2c67d -- fixed width calculations for alternations by Fredrik Lundh · 24 years ago
  94. 329e291 Removed decl of unreferenced vrbl. by Tim Peters · 24 years ago
  95. 29c4ba9 SRE 0.9.8: passes the entire test suite by Fredrik Lundh · 24 years ago
  96. a4e9a33 Update e-mail address by Andrew M. Kuchling · 24 years ago
  97. dc71cac replaced PyArgs_Parse by PyArgs_ParseTuple by Peter Schneider-Kamp · 24 years ago
  98. 5a65c2d added count, extend, index, pop and remove to arraymodule by Peter Schneider-Kamp · 24 years ago
  99. 7e01890 merge Include/my*.h into Include/pyport.h by Peter Schneider-Kamp · 24 years ago
  100. 071864a More Windows changes. by Mark Hammond · 24 years ago