1. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  2. fec4eb1 Allow PyObject_Del to be used as a function designator. Provide binary by Neil Schemenauer · 22 years ago
  3. 8ab04b4 Got rid of ifdefs for long-obsolete GUSI versions. by Jack Jansen · 22 years ago
  4. 1630520 Fix an obvious bug. by Thomas Heller · 22 years ago
  5. 688357e Patch #512005: getrusage() returns struct-like object. by Martin v. Löwis · 22 years ago
  6. 8fdc75b Lock methods acquire() and locked() now return bools. by Guido van Rossum · 22 years ago
  7. e276339 Implement an idea by Paul Rubin: by Guido van Rossum · 22 years ago
  8. bc0e910 Convert a pile of obvious "yes/no" functions to return bool. by Tim Peters · 22 years ago
  9. 2e1c09c Removed old Digital Creations copyright/license notices (with by Guido van Rossum · 22 years ago
  10. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  11. a2bd8d3 Remove direct manipulation of the module dict. by Fred Drake · 22 years ago
  12. e7fefbf Fix bugs: by Mark Hammond · 22 years ago
  13. b0aaec5 Convert more METH_OLDARGS & PyArg_Parse() by Neal Norwitz · 22 years ago
  14. 187ae56 Get rid of more PyArg_Parse & METH_OLDARGS. by Neal Norwitz · 22 years ago
  15. 2f6ef4c Reindent. Break long lines. Move comments before the statements. by Martin v. Löwis · 22 years ago
  16. 4baedc1 Use the PyModule_Add*() APIs instead of manipulating the module dict directly. by Fred Drake · 22 years ago
  17. 9bb7432 Remove all but one use of the module dict. by Fred Drake · 22 years ago
  18. d63e504 Remove unused variable and call to PyModule_GetDict(). by Fred Drake · 22 years ago
  19. acee69f Switch to using METH_NOARGS where possible. by Fred Drake · 22 years ago
  20. 43c9d8a Remove UNLESS. by Martin v. Löwis · 22 years ago
  21. f4e3484 Use the PyModule_*() API instead of manipulating the module dictionary directly. by Fred Drake · 22 years ago
  22. 02098fa Get rid of all METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 22 years ago
  23. dfd59e0 mpz_float() only takes one parameter now by Neal Norwitz · 22 years ago
  24. 767f835 Get rid of warnings due to changing to METH_NOARGS by Neal Norwitz · 22 years ago
  25. 28faa1b Convert METH_OLDARGS -> METH_NOARGS: remove args parameter by Neal Norwitz · 22 years ago
  26. bb2769f Revert use of METH_OLDARGS (use 0) to support 1.5.2 by Neal Norwitz · 22 years ago
  27. b82d34f Convert METH_OLDARGS -> METH_VARARGS: also PyArg_Parse -> PyArg_ParseTuple by Neal Norwitz · 22 years ago
  28. ba3a16c Remove METH_OLDARGS: by Neal Norwitz · 22 years ago
  29. 50905b5 Convert from using METH_OLDARGS to METH_NOARGS. These should be safe. by Neal Norwitz · 22 years ago
  30. 01b2694 Fix whitespace by Neal Norwitz · 22 years ago
  31. b049325 Use symbolic METH_VARARGS/METH_OLDARGS instead of 1/0 for ml_flags by Neal Norwitz · 22 years ago
  32. cc07ec1 Add missing typecast. by Neil Schemenauer · 22 years ago
  33. f4a4fb9 [Patch #536769] Add -Xcompiler flag for adding arguments and switches for by Andrew M. Kuchling · 22 years ago
  34. b883310 Make _PyObject_GC_UnTrack do nothing if WITH_CYCLE_GC is not defined. by Neil Schemenauer · 22 years ago
  35. 78662cf Add type cast. by Neil Schemenauer · 22 years ago
  36. ff413af This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction). by Guido van Rossum · 22 years ago
  37. f841aa6 Add a simple test of the METH_CLASS and METH_STATIC flags for type methods. by Fred Drake · 22 years ago
  38. 2e64c34 Expose C library's gettext. Fixes #516412. by Martin v. Löwis · 22 years ago
  39. 496f9e4 Don't imply XPG4 constants from CODESET presence. Fixes #534153. 2.2.2 candiate. by Martin v. Löwis · 22 years ago
  40. 4632117 Missed change METH_OLDARGS to METH_NOARGS for two aliased functions by Neal Norwitz · 22 years ago
  41. 7e78acb Remove last occurrance of PyArg_GetInt. It is deprecated, by Neal Norwitz · 22 years ago
  42. 2358425 Missed change METH_OLDARGS to METH_NOARGS for two aliased functions by Neal Norwitz · 22 years ago
  43. 3a6f978 Remove many uses of PyArg_NoArgs macro, change METH_OLDARGS to METH_NOARGS. by Neal Norwitz · 22 years ago
  44. 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
  45. 29ac3cb Expose RLIM_INFINITY constant. Closes SF patch 489066. by Neil Schemenauer · 22 years ago
  46. 0f75e0d Add get_history_item, get_current_history_length, and redisplay functions. by Neil Schemenauer · 22 years ago
  47. fa79c65 Match behavior of the pickle.py module more closely. by Neil Schemenauer · 22 years ago
  48. 94b866a Handle os.listdir("") case correctly on Windows. Closes bug 500705. by Neil Schemenauer · 22 years ago
  49. 1b0e4fc Use pymalloc for realloc() as well. by Neil Schemenauer · 22 years ago
  50. dcc819a Use pymalloc if it's enabled. by Neil Schemenauer · 22 years ago
  51. 3afb2d2 Remove compiler warnings on Solaris 8. Can go into 2.2.x, but not necessary. by Neal Norwitz · 22 years ago
  52. 5909402 Remove extraneous #define as per effbot's instructions in: by Neal Norwitz · 22 years ago
  53. d4233b2 Include Python.h first. Fixes #530159. by Martin v. Löwis · 22 years ago
  54. dc0b61d Verify arguments for nl_langinfo. Fixes #528879. by Martin v. Löwis · 22 years ago
  55. 1de5a72 Change the example code to prefer PyModule_Add*() instead of using the by Fred Drake · 22 years ago
  56. 193a3f6 Update docstrings to use te attribute names of the new structures returned by Fred Drake · 22 years ago
  57. 556a938 Changed C++ comment into standard comment. by Sjoerd Mullender · 22 years ago
  58. dc5a508 SF bug 525705: [2.2] underflow raise OverflowException. by Tim Peters · 22 years ago
  59. b189b07 Fix SF bug #526518 by Jeremy Hylton · 22 years ago
  60. c9ffa06 SF bug 515943: searching for data with \0 in mmap. by Tim Peters · 22 years ago
  61. aa158be Remove tp_print. by Martin v. Löwis · 22 years ago
  62. bc2e10e Python no longer compiled on Windows, due to #include file confusion by Tim Peters · 22 years ago
  63. 6c73af2 OS/2 EMX port changes (Modules part of patch #450267): by Andrew MacIntyre · 22 years ago
  64. ba43e87 OS/2 EMX port changes (Modules part of patch #450267): by Andrew MacIntyre · 22 years ago
  65. 7bf6833 OS/2 EMX port changes (Modules part of patch #450267): by Andrew MacIntyre · 22 years ago
  66. 6f33250 SF patch 517245 by Marc Recht. by Guido van Rossum · 22 years ago
  67. dbd55b3 Patch #523268, #522027: return enhanced tuples. by Martin v. Löwis · 22 years ago
  68. 9986633 Patch 520694: arraymodule.c improvements: by Martin v. Löwis · 22 years ago
  69. 272cb40 Patch #520062: Support IPv6 with VC.NET. by Martin v. Löwis · 22 years ago
  70. 666e70d Add documentation about how the inter-module linking works. by Marc-André Lemburg · 22 years ago
  71. 643a7fc Moved the declaration of PySocketSock_Type from socketmodule.h to by Tim Peters · 23 years ago
  72. 6f5505a For readability, switch to tab indents; was using a mix of tab indents, by Tim Peters · 23 years ago
  73. b2c92f4 Patch #511193: Implement killpg in posixmodule. by Martin v. Löwis · 23 years ago
  74. e6cc5b6 Remove extraneous variable 'total', as reported by James Rucker. by Martin v. Löwis · 23 years ago
  75. 976ade6 Also fix the comment. by Marc-André Lemburg · 23 years ago
  76. bb8b78b Fix the name of the header file. by Marc-André Lemburg · 23 years ago
  77. a5d2b4c Break SSL support out of _socket module and place it into a new by Marc-André Lemburg · 23 years ago
  78. 2eeec9b Fix typo. by Fred Drake · 23 years ago
  79. 78f6c86 Use PyModule_AddObject() instead of accessing the module dict directly. by Fred Drake · 23 years ago
  80. cca657b Use PyModule_AddIntConstant() instead of creating a private helper function. by Fred Drake · 23 years ago
  81. 0c1ceaf Simon Budig's patch (posted by me): by Michael W. Hudson · 23 years ago
  82. 8fef47b Define VERSION in expat.h. by Martin v. Löwis · 23 years ago
  83. 9ad4b68 Windows time_clock(): rewrite to get rid of horrid casting tricks. by Tim Peters · 23 years ago
  84. b48d198 "Generate" from expat.h.in, for 1.95.2. by Martin v. Löwis · 23 years ago
  85. 7ba5e81 Ensure we also build on VC7. Involves replacing largeint.h helper functions with msvc's native 64 bit integers. by Mark Hammond · 23 years ago
  86. cf453fe Use included Expat library. Drop support for older expat versions. by Martin v. Löwis · 23 years ago
  87. 481f68a Disable usage of Expat's config.h. by Martin v. Löwis · 23 years ago
  88. 1dbb1ca Initial revision by Martin v. Löwis · 23 years ago
  89. aeff668 Remove mentioning of -U option in "python -h" output. by Marc-André Lemburg · 23 years ago
  90. 2c146bf start() and stop() methods: return None where there is no exception; by Fred Drake · 23 years ago
  91. 4892f24 Got rid of a few more NeXT ifdefs. The last, I think. by Jack Jansen · 23 years ago
  92. ab034fa Implement os.waitpid() for Windows, in a way that's compatible with Linux by Tim Peters · 23 years ago
  93. cf6bfe4 Oh look, another one. by Michael W. Hudson · 23 years ago
  94. 67fb0c3 I think this fixes by Michael W. Hudson · 23 years ago
  95. 5aa9160 Expose more MS WIndows constants usable w/ low-level os.open(). by Tim Peters · 23 years ago
  96. 2a47c0f Fix spelling mistakes. Bugfix candidates. by Neal Norwitz · 23 years ago
  97. 84432eb Encode Unicode arguments to split/splitlist as UTF-8. Fixes #507962. by Martin v. Löwis · 23 years ago
  98. 902952b Removed an XXX question (the answer is "yes" <wink>). by Tim Peters · 23 years ago
  99. 43b936d Patch #477750: Use METH_ constants in Modules. by Martin v. Löwis · 23 years ago
  100. c0e1671 Patch #477752: Drop old-style getargs from curses. by Martin v. Löwis · 23 years ago