1. 67d70eb Repair mangled code in the Windows flavor of posix__getfullpathname(). by Tim Peters · 18 years ago
  2. 68bc4f9 Py_ssize_t-ify. by Thomas Wouters · 18 years ago
  3. 9d63cca Fix DBEnv's set_tx_timestamp wrapper to be slightly more correct on by Thomas Wouters · 18 years ago
  4. 1a5e21e Updates to the with-statement: by Guido van Rossum · 18 years ago
  5. 85b1052 Another bit of unconstification. by Tim Peters · 18 years ago
  6. f7f438b SF patch #1438387, PEP 328: relative and absolute imports. by Thomas Wouters · 18 years ago
  7. 1d519e4 unconst. by Martin v. Löwis · 18 years ago
  8. b9eb551 Convert array.array.insert to use Py_ssize_t (like the rest already does.) by Thomas Wouters · 18 years ago
  9. 02cbf4a More unconsting. by Martin v. Löwis · 18 years ago
  10. b79afb6 unconst. by Martin v. Löwis · 18 years ago
  11. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  12. e2dd78c Update for PEP 308 patch. by Thomas Wouters · 18 years ago
  13. 577b5b9 Create _ast module. Cleanup Python-ast.c generation. by Martin v. Löwis · 18 years ago
  14. 1968ad3 - Patch 1433928: by Guido van Rossum · 18 years ago
  15. c2fb6c7 Fix typo in functional module by Georg Brandl · 18 years ago
  16. 668a94a NETLINK_TCPDIAG and NETLINK_NFLOG aren't defined on older Linux by Guido van Rossum · 18 years ago
  17. e393bf6 Patch #931938: prevent setting sys.prefix to "" by Georg Brandl · 18 years ago
  18. dbd8339 Bug #854823: socketmodule now builds on Sun platforms even when by Georg Brandl · 18 years ago
  19. d69e034 Fix a build problem introduced by r42230. by Hye-Shik Chang · 18 years ago
  20. e810fe2 Remove two instances of trailing commas. Resolves patch #1209781. by Georg Brandl · 18 years ago
  21. e9b1949 Patch #1352711: make zipimport raise a complete IOError by Georg Brandl · 18 years ago
  22. 093ab1a Remove unused variable by Neal Norwitz · 18 years ago
  23. f4f4415 Patch #1393157: os.startfile() now has an optional argument to specify by Georg Brandl · 18 years ago
  24. 47fab92 Bug #1366000: cleanup BZ2File.seek() logic. Fixes the case of whence=2, offset>=0. by Georg Brandl · 18 years ago
  25. 5bb8a15 Fix typo. by Martin v. Löwis · 18 years ago
  26. 1518607 Fix size computation on Win64. by Martin v. Löwis · 18 years ago
  27. 5c97c79 Make ssize_t-clean. by Martin v. Löwis · 18 years ago
  28. b86a54f Add deprecation warning to modules deprecated since 2000. by Georg Brandl · 18 years ago
  29. 2c98a7b Fix typo. by Thomas Wouters · 18 years ago
  30. 1b67267 Bug #1432350: arrayobject should use PyObject_VAR_HEAD by Georg Brandl · 18 years ago
  31. cfe7e09 Remove size restrictions. by Martin v. Löwis · 18 years ago
  32. f288295 mmap_flush_method(): Squash compiler warning about by Tim Peters · 18 years ago
  33. 8f9cc29 Remove space between function name and left paren in function calls. by Tim Peters · 18 years ago
  34. 23721ee Removed pointless parens around `return` expressions; by Tim Peters · 18 years ago
  35. ec0a5f0 Trimmed trailing whitespace. by Tim Peters · 18 years ago
  36. e564e7f new_mmap_object(), Windows flavor. by Tim Peters · 18 years ago
  37. dde1765 More Py_ssize_t format characters. by Thomas Wouters · 18 years ago
  38. 2ad8c56 struct_pack(): Repair new assert-fail crash in by Tim Peters · 18 years ago
  39. 13870b1 Also make _heapq.nlargest() use Py_ssize_t instead of ints, to iter over by Thomas Wouters · 18 years ago
  40. ed6254a Use 'n' format for Py_ssize_t variables to PyArg_ParseTuple(). Py_ssize_t by Thomas Wouters · 18 years ago
  41. 7a2f83b Use correct format specifier for Py_ssize_t variable to PyArg_ParseTuple(). by Thomas Wouters · 18 years ago
  42. 4129068 Change _PyObject_GC_Resize to expect Py_ssize_t. by Martin v. Löwis · 18 years ago
  43. ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 18 years ago
  44. 3eaf2b5 Update comment and make accurate. by Neal Norwitz · 18 years ago
  45. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  46. 219c164 randombits(): Stop compiler warning about mixing by Tim Peters · 18 years ago
  47. 389cea8 Try to improve name based on discussion on python-checkins with Jim Jewett by Neal Norwitz · 18 years ago
  48. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  49. f84d1b9 Introduce Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE. Proposed by Tim Peters. by Martin v. Löwis · 18 years ago
  50. 2bc23f5 The default timer unit was incorrectly measured in milliseconds instead by Armin Rigo · 18 years ago
  51. a871ef2 Added the cProfile module. by Armin Rigo · 18 years ago
  52. 082b2df Bug #876637, prevent stack corruption when socket descriptor by Neal Norwitz · 18 years ago
  53. 19cbcad Fix indentation (whitespace only). by Neal Norwitz · 18 years ago
  54. 02876df Check return results for errors by Neal Norwitz · 18 years ago
  55. 0e6bc8c Patch #1407135, bug #1424041, make mmap.mmap(-1, length) work the same by Neal Norwitz · 18 years ago
  56. d1cfc8a Whitespace normalization by Neal Norwitz · 18 years ago
  57. 57a34e8 Patch #1422385: Changes to nis module to support multiple NIS domains by Martin v. Löwis · 18 years ago
  58. 1469466 Drop C library for stat/fstat on Windows. by Martin v. Löwis · 18 years ago
  59. fd049a6 maintain support for older python versions in this module so that it by Gregory P. Smith · 18 years ago
  60. 8a47404 Add wrapper for DBEnv.set_tx_timeout method to allow time based DB_RECOVER by Gregory P. Smith · 18 years ago
  61. 62a2112 Fix bug #1413192, fix seg fault in bsddb if a txn was deleted before the env. by Neal Norwitz · 18 years ago
  62. 4e414d8 commits sourceforge patch #1407992 by neil.norwitz. by Gregory P. Smith · 18 years ago
  63. 29602d2 Support for BerkeleyDB 4.4 (tested against 4.4.20 as well as all the by Gregory P. Smith · 18 years ago
  64. 3d56350 _compile(): raise an exception if downcasting to SRE_CODE loses information: by Tim Peters · 18 years ago
  65. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 18 years ago
  66. d078e40 Generate getbuildinfo.o each time the linker is invoked; by Martin v. Löwis · 18 years ago
  67. 20bad74 SF Bug #1407069, Remove extra semi-colon if there is no long long by Neal Norwitz · 18 years ago
  68. 6585166 Get socketmodule to build after adding netlink support. by Neal Norwitz · 18 years ago
  69. b84b35f the implementation uses ZipImportError, not ZipImporterError... by Fredrik Lundh · 18 years ago
  70. d056005 Change build format of netlink addresses. by Martin v. Löwis · 18 years ago
  71. 11017b1 Patch #1103116: AF_NETLINK sockets basic support. by Martin v. Löwis · 18 years ago
  72. 3b4fff8 Fix SF bug #1402308, segfault when using mmap(-1, ...) by Neal Norwitz · 18 years ago
  73. 88bbd73 SF bug #1400822, Extended version of _curses over{lay,write} does not work by Neal Norwitz · 18 years ago
  74. 5e3d862 Bug #1400115, Fix segfault when calling curses.panel.userptr() by Neal Norwitz · 18 years ago
  75. d948a43 Fix icc warnings: try to set TCL_UNIX_FD for #if TCL_WIN_SOCKET == TCL_UNIX_FD. res is not used, add a XXX comment by Neal Norwitz · 18 years ago
  76. e4ab5f5 Fix icc warnings: HASH_OBJ_CONSTRUCTOR was not defined and using #if HASH_OBJ_CONSTRUCTOR by Neal Norwitz · 18 years ago
  77. d39d861 Fix icc warnings: strlen() returns size_t by Neal Norwitz · 18 years ago
  78. 52ca0dd Fix icc warnings: using wrong enum type by Neal Norwitz · 18 years ago
  79. f045914 Fix icc warnings: extra semi-colon and signed vs unsigned by Neal Norwitz · 18 years ago
  80. 3f04648 Fix icc warnings: extra semi-colon by Neal Norwitz · 18 years ago
  81. a9652f1 Py_GetBuildInfo(): Squash compiler warnings. by Tim Peters · 18 years ago
  82. 456af5f Deal with empty svn_revisions. by Martin v. Löwis · 18 years ago
  83. 43b5780 Drop sys.build_number. Add sys.subversion. by Martin v. Löwis · 18 years ago
  84. 2b47445 squash compiler warning on Mac OSX 10.3 by Skip Montanaro · 18 years ago
  85. c5bf5a0 Always set SVNVERSION to "exported" if it otherwise fails. by Martin v. Löwis · 18 years ago
  86. dea59e5 Stop maintaining the buildno file. by Martin v. Löwis · 18 years ago
  87. 40c6b47 Fix errors on 64-bit platforms. Will backport by Neal Norwitz · 18 years ago
  88. 70cef44 Remove unneeded directories. by Martin v. Löwis · 19 years ago
  89. d372aa8 Import zlib into Python tree. by Martin v. Löwis · 19 years ago
  90. f5bd3b4 adding in-place operators to the operator module. by Armin Rigo · 19 years ago
  91. c4308d5 two missing PyDoc_STR(). by Armin Rigo · 19 years ago
  92. cd4d1e8 [ 959576 ] Can't build Python on POSIX w/o $HOME by Georg Brandl · 19 years ago
  93. c338999 SF#1389809 by Fredrik Lundh · 19 years ago
  94. ce3a913 Revert most of r41765. Don't use $Revision$ in Py_GetBuildNumber(). Keep the by Barry Warsaw · 19 years ago
  95. 9dbc7dd Remove extra parens by Neal Norwitz · 19 years ago
  96. 30b5c5d Fix SF bug #1072182, problems with signed characters. by Neal Norwitz · 19 years ago
  97. a3bdc2c Handle a couple of use cases discussed in python-dev w.r.t. calculating the by Barry Warsaw · 19 years ago
  98. 0149e3a Fixed None reference leaks in TreeBuilder class (reported by Neal Norwitz) by Fredrik Lundh · 19 years ago
  99. 8856fb7 SF Patch #1365916, mmap fails on AMD64 by Neal Norwitz · 19 years ago
  100. 2a38a86 Expose Subversion revision number (calculated via "svnversion .") to Python. by Barry Warsaw · 19 years ago