1. 81707f1 "_self" is a said to be a reserved word in Watcom C 10.6. I'm by Fredrik Lundh · 18 years ago
  2. 36f6d77 [Bug #1497414] _self is a reserved word in the WATCOM 10.6 C compiler. by Andrew M. Kuchling · 18 years ago
  3. 752968e More memory leaks from valgrind by Neal Norwitz · 18 years ago
  4. 72270c2 Repaired error in new comment. by Tim Peters · 18 years ago
  5. d6a6f02 _range_error(): Speed and simplify (there's no real need for by Tim Peters · 18 years ago
  6. c2b550e Trimmed trailing whitespace. by Tim Peters · 18 years ago
  7. bd16bce PyTuple_Pack is not available in Python 2.3, but ctypes must stay by Thomas Heller · 18 years ago
  8. 971ea11 Calculate smallest properly (it was off by one) and use proper ssize_t types for Win64 by Neal Norwitz · 18 years ago
  9. 4182a75 Change wrapping terminology to overflow masking by Bob Ippolito · 18 years ago
  10. 1e44ca9 Simplify further by using AddStringConstant by Neal Norwitz · 18 years ago
  11. 2fd3977 struct: modulo math plus warning on all endian-explicit formats for compatibility with older struct usage (ugly) by Bob Ippolito · 18 years ago
  12. a355c14 Whoops. by Georg Brandl · 18 years ago
  13. bf92f46 Convert more modules to METH_VARARGS. by Georg Brandl · 18 years ago
  14. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 18 years ago
  15. 2cfaa34 Correct some value converting strangenesses. by Georg Brandl · 18 years ago
  16. 162997e Silence a warning. by Armin Rigo · 18 years ago
  17. 28b2686 simplify the struct code a bit (no functional changes) by Bob Ippolito · 18 years ago
  18. bda0744 Convert fmmodule to METH_VARARGS. by Georg Brandl · 18 years ago
  19. c649ec5 Apply modified version of Collin Winter's patch #1478788 by Nick Coghlan · 18 years ago
  20. c7c5114 Fix refleak in socketmodule. Replace bogus Py_BuildValue calls. by Georg Brandl · 18 years ago
  21. 964f597 METH_NOARGS functions do get called with two args. by Georg Brandl · 18 years ago
  22. 660222f Convert audioop over to METH_VARARGS. by Georg Brandl · 18 years ago
  23. fbef588 Fix C function calling conventions in _sre module. by Georg Brandl · 18 years ago
  24. c26025c Fix ref-antileak in _struct.c which eventually lead to deallocating None. by Georg Brandl · 18 years ago
  25. cd51ca5 fix struct regression on 64-bit platforms by Bob Ippolito · 18 years ago
  26. 2d40077 needforspeed: use PyObject_MALLOC instead of system malloc for small by Jack Diederich · 18 years ago
  27. 7b9558d Conversion of exceptions over from faked-up classes to new-style C types. by Richard Jones · 18 years ago
  28. 1fcdc23 Fix up struct docstrings, add struct.pack_to function for symmetry by Bob Ippolito · 18 years ago
  29. 90bd0a5 Remove the range checking and int usage #defines from _struct and strip out the now-dead code by Bob Ippolito · 18 years ago
  30. d532ba0 Explain why 'consumed' is initialized. by Martin v. Löwis · 18 years ago
  31. d004fc8 Patch 1494554: Update numeric properties to Unicode 4.1. by Martin v. Löwis · 18 years ago
  32. 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 · 18 years ago
  33. aa70a17 enable all of the struct tests, use ssize_t, fix some whitespace by Bob Ippolito · 18 years ago
  34. 7784f12 Replace Py_BuildValue("OO") by PyTuple_Pack. by Georg Brandl · 18 years ago
  35. 735ae48 Repair Windows compiler warnings about mixing by Tim Peters · 18 years ago
  36. 0cbf2c5 fix signed/unsigned mismatch in struct by Bob Ippolito · 18 years ago
  37. 1d2b0e3 Enable PY_USE_INT_WHEN_POSSIBLE in struct by Bob Ippolito · 18 years ago
  38. 685dda8 Fix _struct typo that broke some 64-bit platforms by Bob Ippolito · 18 years ago
  39. ad64785 Fix distutils so that libffi will cross-compile between darwin/x86 and darwin/ppc by Bob Ippolito · 18 years ago
  40. e27337b fix #1229380 No struct.pack exception for some out of range integers by Bob Ippolito · 18 years ago
  41. 2856e5f Support for buffer protocol for socket and struct. by Martin Blais · 18 years ago
  42. 6c433a9 use Py_ssize_t in places that may need it by Jack Diederich · 18 years ago
  43. c285e62 Repair idiot typo, and complete the job of trying to by Tim Peters · 18 years ago
  44. 4c803f1 Move over to use of METH_O and METH_NOARGS. by Brett Cannon · 18 years ago
  45. 45c6472 Add missing files from x86 darwin ctypes patch by Bob Ippolito · 18 years ago
  46. 7a822da Some Win64 pre-release in 2000 didn't support by Tim Peters · 18 years ago
  47. f5bc414 Fix minor typo in prep_cif.c by Ronald Oussoren · 18 years ago
  48. 964e02a fix test_float regression and 64-bit size mismatch issue by Bob Ippolito · 18 years ago
  49. 66c0935 enable darwin/x86 support for libffi and hence ctypes (doesn't yet support --enable-universalsdk) by Bob Ippolito · 18 years ago
  50. a99865b Use faster struct pack/unpack functions for the endian table that matches the host's by Bob Ippolito · 18 years ago
  51. 04ab994 Use LONG_MIN and LONG_MAX to check Python integer bounds instead of the incorrect INT_MIN and INT_MAX by Bob Ippolito · 18 years ago
  52. 684fd0c Replace PyObject_CallFunction calls with only object args by Georg Brandl · 18 years ago
  53. 3b0cae9 fix a struct regression where long would be returned for short unsigned integers by Bob Ippolito · 18 years ago
  54. 3fc2bb9 Fix Cygwin compiler issue by Bob Ippolito · 18 years ago
  55. 94f68ee Struct now unpacks to PY_LONG_LONG directly when possible, also include #ifdef'ed out code that will return int instead of long when in bounds (not active since it's an API and doc change) by Bob Ippolito · 18 years ago
  56. eb62127 refactor unpack, add unpack_from by Bob Ippolito · 18 years ago
  57. 07c023b fix typo in _struct by Bob Ippolito · 18 years ago
  58. d3611eb forward declaration for PyStructType by Bob Ippolito · 18 years ago
  59. 4de3f99 fix linking issue, warnings, in struct by Bob Ippolito · 18 years ago
  60. 232f3c9 patch #1493701: performance enhancements for struct module by Bob Ippolito · 18 years ago
  61. 7ccc95a patch #1493701: performance enhancements for struct module by Bob Ippolito · 18 years ago
  62. 27abce5 revert #1493701 by Bob Ippolito · 18 years ago
  63. fb8b84a Patch #1493701: performance enhancements for struct module. by Bob Ippolito · 18 years ago
  64. a43190b Patch #1492356: Port to Windows CE (patch set 1). by Martin v. Löwis · 18 years ago
  65. 378d592 Patch #1490224: set time.altzone correctly on Cygwin. by Georg Brandl · 18 years ago
  66. 9e5b5e4 Fix typo in os.utime docstring (patch #1490189) by Georg Brandl · 18 years ago
  67. 402cc24 PyZlib_copy(), PyZlib_uncopy(): Repair leaks on the normal-case path. by Tim Peters · 18 years ago
  68. 8d3342b Patch #1435422: zlib's compress and decompress objects now have a copy() method. by Georg Brandl · 18 years ago
  69. 5f5d99c - Test for sys/statvfs.h before including it, as statvfs is present by Martin v. Löwis · 18 years ago
  70. e3edaea Fix memory leak. by Martin v. Löwis · 18 years ago
  71. 375f06b Remove lie in new comment. by Tim Peters · 18 years ago
  72. 8931ff1 Teach PyString_FromFormat, PyErr_Format, and PyString_FromFormatV by Tim Peters · 18 years ago
  73. 77c176d Fix alignment error on Itanium. by Martin v. Löwis · 18 years ago
  74. 682b1bb Dynamically allocate path name buffer for Unicode by Martin v. Löwis · 18 years ago
  75. 38e3b7d Don't mask a no memory error with a less meaningful one as discussed on python-checkins by Neal Norwitz · 18 years ago
  76. c6a989a Fix problems found by Coverity. by Neal Norwitz · 18 years ago
  77. 9f485bc Add missing PyMem_Free. by Martin v. Löwis · 18 years ago
  78. d4e3bb3 Port access, chmod, parts of getcwdu, mkdir, and utime to direct Win32 API. by Martin v. Löwis · 18 years ago
  79. 9b83fc6 Clean up. by Thomas Heller · 18 years ago
  80. 21a929f Export the 'free' standard C function for use in the test suite. by Thomas Heller · 18 years ago
  81. 4fc2bda Drop now-unnecessary arguments to posix_2str. by Martin v. Löwis · 18 years ago
  82. 8e0d494 Implement os.{chdir,rename,rmdir,remove} using Win32 directly. by Martin v. Löwis · 18 years ago
  83. da5b701 Get rid of __context__, per the latest changes to PEP 343 and python-dev by Guido van Rossum · 18 years ago
  84. 9652baa Fix breakage from patch 1471883 (r45800 & r45808) on OSF/1. by Neal Norwitz · 18 years ago
  85. 8672519 Work around deadlock risk. Will backport. by Martin v. Löwis · 18 years ago
  86. de9b624 Bug #1473625: stop cPickle making float dumps locale dependent in protocol 0. by Georg Brandl · 18 years ago
  87. b75d43d Further changes for #1471883: Edit Misc/NEWS, and add expat_config.h. by Martin v. Löwis · 18 years ago
  88. 6d78a58 Bug #1478429: make datetime.datetime.fromtimestamp accept every float, by Georg Brandl · 18 years ago
  89. 82d4cc2 Fix some warnings on Mac OS X 10.4 by Neal Norwitz · 18 years ago
  90. f4795c8 Fix build on MIPS for libffi. I haven't tested this yet because I by Hye-Shik Chang · 18 years ago
  91. 57a0361 Patch from Aldo Cortesi (OpenBSD buildbot owner). by Neal Norwitz · 18 years ago
  92. 4e1777d Fix compiler warnings on Darwin. by Thomas Heller · 18 years ago
  93. 1ddba60 Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python uses by Thomas Wouters · 18 years ago
  94. 0452049 Fix SF bug #1476111: SystemError in socket sendto. The AF_INET6 and by Thomas Wouters · 18 years ago
  95. 6dbff33 SF bug/patch #1433877: string parameter to ioctl not null terminated by Thomas Wouters · 18 years ago
  96. 3e99c0a Updated the sqlite3 module to the external pysqlite 2.2.2 version. by Gerhard Häring · 18 years ago
  97. 32fd16e Patch 1471761 - test for broken poll at runtime by Ronald Oussoren · 18 years ago
  98. d06b6f2 Patch 1471925 - Weak linking support for OSX by Ronald Oussoren · 18 years ago
  99. 6685128 Fix more ssize_t issues. by Martin v. Löwis · 18 years ago
  100. 26fd960 Fix more ssize_t problems. by Martin v. Löwis · 18 years ago