1. 6d78a58 Bug #1478429: make datetime.datetime.fromtimestamp accept every float, by Georg Brandl · 18 years ago
  2. 82d4cc2 Fix some warnings on Mac OS X 10.4 by Neal Norwitz · 18 years ago
  3. f4795c8 Fix build on MIPS for libffi. I haven't tested this yet because I by Hye-Shik Chang · 18 years ago
  4. 57a0361 Patch from Aldo Cortesi (OpenBSD buildbot owner). by Neal Norwitz · 18 years ago
  5. 4e1777d Fix compiler warnings on Darwin. by Thomas Heller · 18 years ago
  6. 1ddba60 Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python uses by Thomas Wouters · 18 years ago
  7. 0452049 Fix SF bug #1476111: SystemError in socket sendto. The AF_INET6 and by Thomas Wouters · 18 years ago
  8. 6dbff33 SF bug/patch #1433877: string parameter to ioctl not null terminated by Thomas Wouters · 18 years ago
  9. 3e99c0a Updated the sqlite3 module to the external pysqlite 2.2.2 version. by Gerhard Häring · 18 years ago
  10. 32fd16e Patch 1471761 - test for broken poll at runtime by Ronald Oussoren · 18 years ago
  11. d06b6f2 Patch 1471925 - Weak linking support for OSX by Ronald Oussoren · 18 years ago
  12. 6685128 Fix more ssize_t issues. by Martin v. Löwis · 18 years ago
  13. 26fd960 Fix more ssize_t problems. by Martin v. Löwis · 18 years ago
  14. 6ce35a9 Fix comment typo by Andrew M. Kuchling · 18 years ago
  15. 4b75a7c Merge in changes from ctypes 0.9.9.6 upstream version. by Thomas Heller · 18 years ago
  16. db8955b Backport p3yk r45619: by Hye-Shik Chang · 18 years ago
  17. c34b931 This is a long-ago patch I submitted to SF (1100924) to time the gc passes. by Skip Montanaro · 18 years ago
  18. 449b24e Address issues brought up by MvL on python-checkins. by Neal Norwitz · 18 years ago
  19. 0d21b1e Whitespace, fix indentation by Neal Norwitz · 18 years ago
  20. 94785ef Correct implementation and documentation of os.confstr. Add a simple test by Skip Montanaro · 18 years ago
  21. a9017c3 SF Patch #1062014: AF_UNIX sockets under Linux have a special by Armin Rigo · 18 years ago
  22. b6dfaed Rename remaining StgDictObject's ffi_type fields to ffi_type_pointer. by Thomas Heller · 18 years ago
  23. 058be9a C++ compiler cleanup: the typical few casts, and ... C++ didn't like that by Skip Montanaro · 18 years ago
  24. cbe2e49 C++ compiler cleanup: a cast here, a cast there... still does not compile under C++ though... by Skip Montanaro · 18 years ago
  25. 14f8899 C++ compiler cleanup: "typename" is a C++ keyword by Skip Montanaro · 18 years ago
  26. 9d89299 Fix refcounting. by Thomas Heller · 18 years ago
  27. 816a162 C++ compiler cleanup: proper casts by Skip Montanaro · 18 years ago
  28. 9582c14 correct function signature by Skip Montanaro · 18 years ago
  29. dd527fc reset errno before calling confstr - use confstr() doc to simplify checks afterwards by Skip Montanaro · 18 years ago
  30. c859b5c Remove unused field by Neal Norwitz · 18 years ago
  31. 88c9784 No reason to export get_decomp_record, make static by Neal Norwitz · 18 years ago
  32. 19ab6c9 Initialize structseq types only once. by Martin v. Löwis · 18 years ago
  33. 195e4e6 Fix valgrind problem with invalid memory read by Neal Norwitz · 18 years ago
  34. 5b03065 Fix memory leak by Neal Norwitz · 18 years ago
  35. 035b185 err is no longer used by Neal Norwitz · 18 years ago
  36. b3deb94 Add missing PyObject_GC_Track call, causing *some* itertools.tee objects to by Thomas Wouters · 18 years ago
  37. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 18 years ago
  38. eb6f183 Fix for FreeBSD. Fixes http://python.org/sf/1470353. Looks like a libffi bug. by Thomas Heller · 18 years ago
  39. 73536e0 Remove partial change (don't edit, commit and think at the same time :P) by Thomas Wouters · 18 years ago
  40. 2742c5e Re-instate backward compatibility by defining Py_CLEAR if it isn't available. by Thomas Wouters · 18 years ago
  41. edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 18 years ago
  42. 7e75f1a Patch #1191065: Fix preprocessor problems on systems where recvfrom is a macro. by Martin v. Löwis · 18 years ago
  43. 3cfea2d Coverity-found bug: datetime_strptime() failed to check for NULL return from by Thomas Wouters · 18 years ago
  44. f24de1e Patch #1470300: Port _hotshot to QNX4.25 port. by Martin v. Löwis · 18 years ago
  45. 0f48d98 Patch #1324762: Change --with-cxx to --with-cxx-main. by Martin v. Löwis · 18 years ago
  46. 7f573f7 Add a test for Py_ssize_t. Correct typo in getargs.c. by Georg Brandl · 18 years ago
  47. b1ed7fa Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  48. 2308915 Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 18 years ago
  49. 635af32 Add PY_SSIZE_T_MIN/MAX to _testcapi. by Georg Brandl · 18 years ago
  50. 7cbc0f5 C++ compiler changes. casts, rename variables with reserved names. by Anthony Baxter · 18 years ago
  51. 3c6e418 Support NFD of very long strings. by Martin v. Löwis · 18 years ago
  52. 1ad9ec2 whoops. missed one in an auto-generated file. another extern "C" {} for C++ compiler compatibility by Anthony Baxter · 18 years ago
  53. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 18 years ago
  54. 55d031e Fix for a bug found by Armin Rigo, plus test. by Thomas Heller · 18 years ago
  55. 2db1550 Off-by-one buffer overflow error. by Armin Rigo · 18 years ago
  56. 4b194fa Update for new grammar by Neal Norwitz · 18 years ago
  57. d6495b5 remove forward declarations. No constructors to move for these files. Makes by Anthony Baxter · 18 years ago
  58. aefd8ca Move constructors, add some casts to make C++ compiler happy. Still a problem by Anthony Baxter · 18 years ago
  59. 5576b54 remove forward declarations, move constructor functions. makes code C++ safe. by Anthony Baxter · 18 years ago
  60. 64182fe Some more changes to make code compile under a C++ compiler. by Anthony Baxter · 18 years ago
  61. 05e89b8 Clear errno before calling opendir() and readdir(). by Georg Brandl · 18 years ago
  62. bbfe4fa Bug #1467952: os.listdir() now correctly raises an error if readdir() by Georg Brandl · 18 years ago
  63. 2ba9661 SF Patch #1463867: Improved generator finalization to allow generators by Phillip J. Eby · 18 years ago
  64. 84a98e0 Fix warning about ptsname not being a prototype on Solaris. Is this prototype even necessary anymore? by Neal Norwitz · 18 years ago
  65. 65c05b2 Get rid of warnings about using chars as subscripts by Neal Norwitz · 18 years ago
  66. b183a25 Fix some warnings on HP-UX when using cc/aCC by Neal Norwitz · 18 years ago
  67. 4c842a4 Fix problem (not checking return result) reported by Coverity by Neal Norwitz · 18 years ago
  68. 7f5b6f4 Fix bsddb.db.DBError derived exceptions so they can be unpickled. by Gregory P. Smith · 18 years ago
  69. 5fe60e7 Patch #1462080: Conditionalize some NETLINK defines. by Martin v. Löwis · 18 years ago
  70. fff61ea Expose RTLD_LOCAL and RTLD_GLOBAL always from the _ctypes extension module. by Thomas Heller · 18 years ago
  71. 430947a Replace a few more 'char' types with 'signed char', to fix test failures by Thomas Heller · 18 years ago
  72. b431998 This change shouldn't have any functional effect. Coverity was by Neal Norwitz · 18 years ago
  73. d126200 Fix unchecked return result from Coverity. by Neal Norwitz · 18 years ago
  74. ffb0d90 Handle ssize_t by Neal Norwitz · 18 years ago
  75. 915ae41 Handle error conditions from PyString_ConcatAndDel(). by Neal Norwitz · 18 years ago
  76. b038333 Handle ssize_t by Neal Norwitz · 18 years ago
  77. 3c423a0 Explicitely use 'signed char', to avoid problems on platforms with unsigned char type. by Thomas Heller · 18 years ago
  78. 0890de3 Explicitely use 'signed char', to avoid problems on platforms with unsigned char type. by Thomas Heller · 18 years ago
  79. 8e7b490 upgrade to final version of pysqlite 2.2.0 by Anthony Baxter · 18 years ago
  80. 4aaaa49 docstring tweak by Fredrik Lundh · 18 years ago
  81. 3b8ff31 SF Bug #1448488 - make collectionsmodule build on Cygwin, using the same by Anthony Baxter · 18 years ago
  82. c410d6c Fix a couple of memory issues by Neal Norwitz · 18 years ago
  83. 72289a6 Update to pysqlite 2.2.0 by Anthony Baxter · 18 years ago
  84. 5fe715f Properly support empty woperation in win32_startfile; by Martin v. Löwis · 18 years ago
  85. cdab455 Try to fix the build on Mac OS X 10.3. The 'live_support' segment by Thomas Heller · 18 years ago
  86. 7392811 - add missing chunk for patch #1117961 by Matthias Klose · 18 years ago
  87. 8e39ec7 - Patch #360466: Replace the MD5 implementation from RSA Data Security Inc by Matthias Klose · 18 years ago
  88. db5483b Try to fix the tests on OpenBSD. Apparently OpenBSD passes by Thomas Heller · 18 years ago
  89. ad89dc8 Bug #1451503: allow unicode filenames in os.startfile(). by Georg Brandl · 18 years ago
  90. 92a6be4 Whitespace: break long line by Neal Norwitz · 18 years ago
  91. 95f0e4c Make ssize_t clean by Neal Norwitz · 18 years ago
  92. 07f5b35 backport r243 from the pysqlite2 svn repository - lowers the required version by Anthony Baxter · 18 years ago
  93. 22a9dc8 Patch #1459631: documnent zlib.Decompress.flush() length parameter. by Georg Brandl · 18 years ago
  94. dcfdae7 Bug #1460564: document that socket.fromfd() duplicates the given by Georg Brandl · 18 years ago
  95. c51ee69 merged the sqlite-integration branch. by Anthony Baxter · 18 years ago
  96. 2a9a6b0 In the fdopen(fd, 'a') case on UNIX, don't try to set fd's flags to -1 if by Thomas Wouters · 18 years ago
  97. 644b1e7 Add guards against fcntl() not being available on Windows. by Georg Brandl · 18 years ago
  98. 54a188a bug #1461855: make os.fdopen() add the O_APPEND flag if using "a" mode. by Georg Brandl · 18 years ago
  99. 43f08a8 Patch #1380952: fix SSL objects timing out on consecutive read()s by Georg Brandl · 18 years ago
  100. d37ac69 Remove unnecessary casts from type object initializers. by Georg Brandl · 18 years ago