1. 624af82 [ 1295808 ] expat symbols should be namespaced in pyexpat by Trent Mick · 19 years ago v2.5b1
  2. f08d663 Upgrade pyexpat to expat 2.0.0 (http://python.org/sf/1462338). by Trent Mick · 19 years ago
  3. ecd2010 Fixed a memory leak that was introduced with incorrect usage of the Python weak by Gerhard Häring · 19 years ago
  4. 4994d95 Patch #1506645: add Python wrappers for the curses functions by Walter Dörwald · 19 years ago
  5. e75cad6 Fix memory leak reported by valgrind while running test_subprocess by Neal Norwitz · 19 years ago
  6. fe7d0c3 Speculative checkin (requires approval of Gerhard Haering) by Neal Norwitz · 19 years ago
  7. b2e8816 - Added version checks in C code to make sure we don't trigger bugs in older by Gerhard Häring · 19 years ago
  8. d825143 Patch #1455898: Incremental mode for "mbcs" codec. by Martin v. Löwis · 19 years ago
  9. 1541ef0 Merged changes from external pysqlite 2.3.0 release. Documentation updates will by Gerhard Häring · 19 years ago
  10. 6d7db6e Remove unused variable. by Brett Cannon · 19 years ago
  11. 9291332 Patch #1454481: Make thread stack size runtime tunable. by Andrew MacIntyre · 19 years ago
  12. c2da994 Add pep-291 compatibility markers. by Thomas Heller · 19 years ago
  13. f608317 Fix the CRT argument error handling for VisualStudio .NET 2005. Install a CRT error handler and disable the assertion for debug builds. This causes CRT to set errno to EINVAL. by Kristján Valur Jónsson · 19 years ago
  14. 81f444b Make the -m switch conform to the documentation of sys.path by behaving like the -c switch by Nick Coghlan · 19 years ago
  15. ee3ea54 I don't know how that happend, but the entire file contents was by Thomas Heller · 19 years ago
  16. 70ee3cc Get rid of function pointer cast. by Martin v. Löwis · 19 years ago
  17. 6e73aaa Patch #1503046, Conditional compilation of zlib.(de)compressobj.copy by Neal Norwitz · 19 years ago
  18. a6d80fa Impl ssize_t by Neal Norwitz · 19 years ago
  19. 047f3c7 Fix some Py_ssize_t issues by Neal Norwitz · 19 years ago
  20. c707438 Fix some Py_ssize_t issues by Neal Norwitz · 19 years ago
  21. 09a29fa Cleanup Py_ssize_t a little (get rid of second #ifdef) by Neal Norwitz · 19 years ago
  22. 0d5d222 Release the GIL during COM method calls, to avoid deadlocks in by Thomas Heller · 19 years ago
  23. 3c5431e Wrap some long lines by Neal Norwitz · 19 years ago
  24. b4fcf8d Fix Coverity # 146. newDBSequenceObject would deref dbobj, so it can't be NULL. by Neal Norwitz · 19 years ago
  25. 9af2b44 Handle failure of PyMem_Realloc. by Thomas Heller · 19 years ago
  26. 9123edc Don't use C++ comment. by Thomas Heller · 19 years ago
  27. eb6dcf6 Fix the second occurrence of the problematic printf format. by Thomas Heller · 19 years ago
  28. 5218ab2 Fix a wrong printf format. by Thomas Heller · 19 years ago
  29. 45f59ab Upgrade to ctypes version 0.9.9.7. by Thomas Heller · 19 years ago
  30. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 19 years ago
  31. dbeaa69 Turn off warning about deprecated CRT functions on for VisualStudio .NET 2005. by Kristján Valur Jónsson · 19 years ago
  32. de3b052 Buffer objects would return the read or write buffer for a wrapped object when by Brett Cannon · 19 years ago
  33. 6ee7d01 Make binascii.hexlify() use s# for its arguments instead of t# to actually by Brett Cannon · 19 years ago
  34. f0cab1f Fix a refleak in recvfrom_into by Neal Norwitz · 19 years ago
  35. 861acee Fix for foreign functions returning small structures on 64-bit big by Thomas Heller · 19 years ago
  36. b1998bc Use the same big-endian hack as in _ctypes/callproc.c for callback functions. by Thomas Heller · 19 years ago
  37. d8714de Add a hack so that foreign functions returning float now do work on 64-bit by Thomas Heller · 19 years ago
  38. bb21b2c BSequence_set_range(): Rev 46688 ("Fix a bunch of by Tim Peters · 19 years ago
  39. 07347d6 Damn - the sentinel was missing. And fix another silly mistake. by Thomas Heller · 19 years ago
  40. ecc3e67 Convert CFieldObject tp_members to tp_getset, since there is no by Thomas Heller · 19 years ago
  41. dd2a6bf Fix a bunch of parameter strings by Neal Norwitz · 19 years ago
  42. e0e797f Remove unused variable (and stop compiler warning) by Neal Norwitz · 19 years ago
  43. 3c228b1 - bsddb: the __len__ method of a DB object has been fixed to return correct by Gregory P. Smith · 19 years ago
  44. 372b583 * fix DBCursor.pget() bug with keyword argument names when no data= is by Gregory P. Smith · 19 years ago
  45. f0547d0 * add support for DBSequence objects [patch #1466734] by Gregory P. Smith · 19 years ago
  46. db8a807 * support DBEnv.lsn_reset() method on BerkeleyDB >= 4.4 [patch #1494902] by Gregory P. Smith · 19 years ago
  47. 76a82e8 * support DBEnv.log_stat() method on BerkeleyDB >= 4.0 [patch #1494885] by Gregory P. Smith · 19 years ago
  48. 58ce5bc Fix a potentially invalid memory access of CJKCodecs' shift-jis by Hye-Shik Chang · 19 years ago
  49. bad4745 fix a bug in the previous commit. don't leak empty list on error return and by Gregory P. Smith · 19 years ago
  50. 3dd2002 bugfix: when log_archive was called with the DB_ARCH_REMOVE flag present by Gregory P. Smith · 19 years ago
  51. 28eeefe Revert revisions: by Tim Peters · 19 years ago
  52. 3f76779 Patch #1359618: Speed-up charmap encoder. by Martin v. Löwis · 19 years ago
  53. 5ec2e85 s_methods[]: Stop compiler warnings by casting s_unpack_from to PyCFunction. by Tim Peters · 19 years ago
  54. af2ae72 Fixes in struct and socket from merge reviews. by Martin Blais · 19 years ago
  55. 6539d2d Patch #1454481: Make thread stack size runtime tunable. by Andrew MacIntyre · 19 years ago
  56. 81707f1 "_self" is a said to be a reserved word in Watcom C 10.6. I'm by Fredrik Lundh · 19 years ago
  57. 36f6d77 [Bug #1497414] _self is a reserved word in the WATCOM 10.6 C compiler. by Andrew M. Kuchling · 19 years ago
  58. 752968e More memory leaks from valgrind by Neal Norwitz · 19 years ago
  59. 72270c2 Repaired error in new comment. by Tim Peters · 19 years ago
  60. d6a6f02 _range_error(): Speed and simplify (there's no real need for by Tim Peters · 19 years ago
  61. c2b550e Trimmed trailing whitespace. by Tim Peters · 19 years ago
  62. bd16bce PyTuple_Pack is not available in Python 2.3, but ctypes must stay by Thomas Heller · 19 years ago
  63. 971ea11 Calculate smallest properly (it was off by one) and use proper ssize_t types for Win64 by Neal Norwitz · 19 years ago
  64. 4182a75 Change wrapping terminology to overflow masking by Bob Ippolito · 19 years ago
  65. 1e44ca9 Simplify further by using AddStringConstant by Neal Norwitz · 19 years ago
  66. 2fd3977 struct: modulo math plus warning on all endian-explicit formats for compatibility with older struct usage (ugly) by Bob Ippolito · 19 years ago
  67. a355c14 Whoops. by Georg Brandl · 19 years ago
  68. bf92f46 Convert more modules to METH_VARARGS. by Georg Brandl · 19 years ago
  69. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 19 years ago
  70. 2cfaa34 Correct some value converting strangenesses. by Georg Brandl · 19 years ago
  71. 162997e Silence a warning. by Armin Rigo · 19 years ago
  72. 28b2686 simplify the struct code a bit (no functional changes) by Bob Ippolito · 19 years ago
  73. bda0744 Convert fmmodule to METH_VARARGS. by Georg Brandl · 19 years ago
  74. c649ec5 Apply modified version of Collin Winter's patch #1478788 by Nick Coghlan · 19 years ago
  75. c7c5114 Fix refleak in socketmodule. Replace bogus Py_BuildValue calls. by Georg Brandl · 19 years ago
  76. 964f597 METH_NOARGS functions do get called with two args. by Georg Brandl · 19 years ago
  77. 660222f Convert audioop over to METH_VARARGS. by Georg Brandl · 19 years ago
  78. fbef588 Fix C function calling conventions in _sre module. by Georg Brandl · 19 years ago
  79. c26025c Fix ref-antileak in _struct.c which eventually lead to deallocating None. by Georg Brandl · 19 years ago
  80. cd51ca5 fix struct regression on 64-bit platforms by Bob Ippolito · 19 years ago
  81. 2d40077 needforspeed: use PyObject_MALLOC instead of system malloc for small by Jack Diederich · 19 years ago
  82. 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 19 years ago
  83. 1fcdc23 Fix up struct docstrings, add struct.pack_to function for symmetry by Bob Ippolito · 19 years ago
  84. 90bd0a5 Remove the range checking and int usage #defines from _struct and strip out the now-dead code by Bob Ippolito · 19 years ago
  85. d532ba0 Explain why 'consumed' is initialized. by Martin v. Löwis · 19 years ago
  86. d004fc8 Patch 1494554: Update numeric properties to Unicode 4.1. by Martin v. Löwis · 19 years ago
  87. 2f3136b Fix compiler warning (and whitespace) on Mac OS 10.4. (A lot of this code looked duplicated, I wonder if a utility function could help reduce the duplication here.) by Neal Norwitz · 19 years ago
  88. aa70a17 enable all of the struct tests, use ssize_t, fix some whitespace by Bob Ippolito · 19 years ago
  89. 7784f12 Replace Py_BuildValue("OO") by PyTuple_Pack. by Georg Brandl · 19 years ago
  90. 735ae48 Repair Windows compiler warnings about mixing by Tim Peters · 19 years ago
  91. 0cbf2c5 fix signed/unsigned mismatch in struct by Bob Ippolito · 19 years ago
  92. 1d2b0e3 Enable PY_USE_INT_WHEN_POSSIBLE in struct by Bob Ippolito · 19 years ago
  93. 685dda8 Fix _struct typo that broke some 64-bit platforms by Bob Ippolito · 19 years ago
  94. ad64785 Fix distutils so that libffi will cross-compile between darwin/x86 and darwin/ppc by Bob Ippolito · 19 years ago
  95. e27337b fix #1229380 No struct.pack exception for some out of range integers by Bob Ippolito · 19 years ago
  96. 2856e5f Support for buffer protocol for socket and struct. by Martin Blais · 19 years ago
  97. 6c433a9 use Py_ssize_t in places that may need it by Jack Diederich · 19 years ago
  98. c285e62 Repair idiot typo, and complete the job of trying to by Tim Peters · 19 years ago
  99. 4c803f1 Move over to use of METH_O and METH_NOARGS. by Brett Cannon · 19 years ago
  100. 45c6472 Add missing files from x86 darwin ctypes patch by Bob Ippolito · 19 years ago