1. 87298c4 No declarations in the middle of a block (fixes compile under Windows) by Antoine Pitrou · 14 years ago
  2. e974571 Issue #10160: Speed up operator.attrgetter. Patch by Christos Georgiou. by Antoine Pitrou · 14 years ago
  3. bbb0412 if FileIO.__init__ fails, close fd by Benjamin Peterson · 14 years ago
  4. 430d469 fix style by Benjamin Peterson · 14 years ago
  5. 8d2b51b Issue #10253: FileIO leaks a file descriptor when trying to open a file by Antoine Pitrou · 14 years ago
  6. e857b29 plug refleak by Benjamin Peterson · 14 years ago
  7. 72f4842 Issue #9377: Use Unicode API for gethostname on Windows. by Martin v. Löwis · 14 years ago
  8. e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are by Antoine Pitrou · 14 years ago
  9. b156a46 Issue #8852: Allow the socket module to build on OpenSolaris. by Antoine Pitrou · 14 years ago
  10. ea5d17d In open(), only set the buffer size from st.st_blksize when it is greater by Antoine Pitrou · 14 years ago
  11. 7e9065c Issue #10143: Update "os.pathconf" values by Jesus Cea · 14 years ago
  12. 770a2be These are true PyCFunctions, after adding the second argument to oss_self, no need to cast. by Georg Brandl · 14 years ago
  13. 08be72d Add a new warning gategory, ResourceWarning, as discussed on python-dev. It is silent by default, by Georg Brandl · 14 years ago
  14. 687a1fa Add casts (one needed, one for consistency). by Georg Brandl · 14 years ago
  15. 29aad00 Issue #10185: use Py_hash_t instead of long by Antoine Pitrou · 14 years ago
  16. 1e908af #6518: enable context manager protocol for ossaudiodev types. by Georg Brandl · 14 years ago
  17. 2158231 Issue #6011: getpath: decode VPATH env var from the locale encoding by Victor Stinner · 14 years ago
  18. ff150f2 Revert r85797 (and r85798): it broke the Windows buildbots because of by Antoine Pitrou · 14 years ago
  19. 7eecffd Issue #9935: Speed up pickling of instances of user-defined classes. by Antoine Pitrou · 14 years ago
  20. 61ec8de For now, remove accept4() code (issue #10115) by Antoine Pitrou · 14 years ago
  21. d532321 Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket` by Antoine Pitrou · 14 years ago
  22. 28928ae #4829: better error message for invalid file mode by Georg Brandl · 14 years ago
  23. 9583cac Issue #10089: Add support for arbitrary -X options on the command-line. by Antoine Pitrou · 14 years ago
  24. f933e1a Issue #4388: On Mac OS X, decode command line arguments from UTF-8, instead of by Victor Stinner · 14 years ago
  25. 07298a1 zipimport: remove arbitrary length limit from message formats by Victor Stinner · 14 years ago
  26. 9e40fad zipimport: document archive encoding; fix indentation by Victor Stinner · 14 years ago
  27. 965a8a1 Revert r85699 and r85701 (zipimport): fullname is a module name, not a path by Victor Stinner · 14 years ago
  28. 8c8ed0a zipimport: fix "can't find module ..." error message by Victor Stinner · 14 years ago
  29. 0410656 zipimport: find_module(), is_package() and get_source() supports surrogates by Victor Stinner · 14 years ago
  30. 269aeb7 zipimport: pass path size to make_filename() by Victor Stinner · 14 years ago
  31. 016cec7 Fix hash function type. by Georg Brandl · 14 years ago
  32. 2a94f4c get_code_from_data() uses the filesystem encoding to encode the module path, by Victor Stinner · 14 years ago
  33. d36c821 zipimport: read_directory() uses cp437 or utf-8 (in strict mode), depending on by Victor Stinner · 14 years ago
  34. 08654e1 zipimport: get_module_code() returns modpath as a Unicode object by Victor Stinner · 14 years ago
  35. 26fabe1 zipimporter_load_module() doesn't destroy mod on error by Victor Stinner · 14 years ago
  36. 72f767e zipimport: encode the prefix to the fileystem encoding by Victor Stinner · 14 years ago
  37. 353349c zipimport, get_module_code(): avoid useless _PyUnicode_AsString() by Victor Stinner · 14 years ago
  38. c342fca zipimport: fix indentation by Victor Stinner · 14 years ago
  39. f038b32 Remove more unneeded casts to hashfunc. by Georg Brandl · 14 years ago
  40. d49bf5e Fix type of hash function. by Georg Brandl · 14 years ago
  41. 646fdd6 Fix compiler warning about unused static function. by Georg Brandl · 14 years ago
  42. c7f4af4 Fix compiler warnings about formatting pid_t as an int, by always casting to long. by Georg Brandl · 14 years ago
  43. e194dd6 #678250: Make mmap flush a noop on ACCESS_READ and ACCESS_COPY. by R. David Murray · 14 years ago
  44. 223f091 fix strict aliasing warnings by Benjamin Peterson · 14 years ago
  45. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  46. a2e7d9b Fix T_BOOL bug of issue 8845. by Martin v. Löwis · 14 years ago
  47. e0f3268 run_file(): encode the filename with PyUnicode_EncodeFSDefault() instead of by Victor Stinner · 14 years ago
  48. 20f11fe Fix compilation warning in _ctypes module on Window by Amaury Forgeot d'Arc · 14 years ago
  49. 68e0135 Fix multiprocessing Semaphore's on netbsd5. SEM_VALUE_MAX is defined by Gregory P. Smith · 14 years ago
  50. 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 14 years ago
  51. 3e85dfd applying netbsd-wizs-mod.patch from issue5510 - by Gregory P. Smith · 14 years ago
  52. 61aad57 Oops, fix my previous commit (r85583) on calculate_path() by Victor Stinner · 14 years ago
  53. dc4b2a7 calculate_path(): use _Py_char2wchar() to decode the PATH environment variable, by Victor Stinner · 14 years ago
  54. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago
  55. 2a53139 Get rid of a "unused static function" warning. by Georg Brandl · 14 years ago
  56. 5a7913e zipimport: catch _PyUnicode_AsString() failure in get_code_from_data() by Victor Stinner · 14 years ago
  57. e16cda9 #9862: On AIX PIPE_BUF is broken. Make it 512. by R. David Murray · 14 years ago
  58. c01537f #9054: fix crash when using pyexpat with a system expat lib version 2.0.1. by Georg Brandl · 14 years ago
  59. b4dac71 #5355: Provide mappings from Expat error numbers to string descriptions and backwards, in order to actually make it possible to analyze error codes provided by ExpatError. by Georg Brandl · 14 years ago
  60. 1bcbaab Issue 9183: Intern UTC timezone. by Alexander Belopolsky · 14 years ago
  61. b1c5496 Issue #7523: Add SOCK_CLOEXEC and SOCK_NONBLOCK to the socket module, by Antoine Pitrou · 14 years ago
  62. f4061da _Py_wgetcwd() decodes the path using _Py_char2wchar() to support surrogates by Victor Stinner · 14 years ago
  63. 9a6692f Py_Main() uses _Py_wchar2char() to encode the filename in error messages by Victor Stinner · 14 years ago
  64. 66c221e #9418: first step of moving private string methods to _string module. by Georg Brandl · 14 years ago
  65. 052a04d Revert r85435 (and r85440): decode command line arguments from utf-8 by Victor Stinner · 14 years ago
  66. 59a289d Issue 9005: Removed dead code. by Alexander Belopolsky · 14 years ago
  67. a213509 main(): catch PyUnicode_FromString() failure (exit) by Victor Stinner · 14 years ago
  68. 90bbaa5 Issue #9992: On Mac OS X, decode command line arguments from utf-8 instead of by Victor Stinner · 14 years ago
  69. eb1410f constify to appease compiler warnings by Benjamin Peterson · 14 years ago
  70. 8f6b6b0 Issue #9992: Remove PYTHONFSENCODING environment variable. by Victor Stinner · 14 years ago
  71. fc113ee Define a "session_id_context" at context creation. This is recommended by Antoine Pitrou · 14 years ago
  72. bd4dacb Fix compile on NetBSD 5.0 (or anything else using an old 0.9.9-dev OpenSSL). by Gregory P. Smith · 14 years ago
  73. 2501aca fix compliation on NetBSD by Gregory P. Smith · 14 years ago
  74. 04248a8 Issue #3873: Speed up unpickling from file objects which have a peek() method. by Antoine Pitrou · 14 years ago
  75. b0182c8 Issue #10075: Add a session_stats() method to SSLContext objects. by Antoine Pitrou · 14 years ago
  76. baecd72 Upgrade to Unicode 6.0.0. by Martin v. Löwis · 14 years ago
  77. 5b0e9e8 Issue #10055: Make json C89-compliant in UCS4 mode. by Antoine Pitrou · 14 years ago
  78. 4f3abb0 copy_absolute() keeps the relative path on _Py_wgetcwd() failure by Victor Stinner · 14 years ago
  79. 41c8b37 copy_absolute() raises a fatal error on _Py_wgetcwd() failure by Victor Stinner · 14 years ago
  80. 4e31443 Create fileutils.c/.h by Victor Stinner · 14 years ago
  81. 7ae7c87 _wrealpath() and _Py_wreadlink() support surrogates (PEP 383) by Victor Stinner · 14 years ago
  82. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  83. ef12810 time: fix gcc warning by Victor Stinner · 14 years ago
  84. 4726e40 Rewrite RunMainFromImporter() by Victor Stinner · 14 years ago
  85. 46c7b3b Issue #8670: Rename testcapi unicode test methods by Victor Stinner · 14 years ago
  86. ea3f305 Oops, revert unwanted _testcapi changes of r85174 by Victor Stinner · 14 years ago
  87. 749261e Issue #8670: ctypes.c_wchar supports non-BMP characters with 32 bits wchar_t by Victor Stinner · 14 years ago
  88. 1c24bd0 Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul character by Victor Stinner · 14 years ago
  89. 9e88b5a Fix #10003. Add SIGBREAK to the set of valid signals on Windows. by Brian Curtin · 14 years ago
  90. 38e2996 Issue #6608: time.asctime is now checking struct tm fields its input by Alexander Belopolsky · 14 years ago
  91. c603717 Issue #9599: Further accuracy tweaks to loghelper. For an integer n that's small enough to be converted to a float without overflow, log(n) is now computed as log(float(n)), and similarly for log10. by Mark Dickinson · 14 years ago
  92. 4c2e4fa Issue #9979: Use PyUnicode_AsWideCharString() in _ctypes module by Victor Stinner · 14 years ago
  93. b290478 Issue #9979: Use PyUnicode_AsWideCharString() in time.strftime() by Victor Stinner · 14 years ago
  94. 449057f Issue #9979: Use PyUnicode_AsWideCharString() for _locale.strcoll() by Victor Stinner · 14 years ago
  95. c8f0196 Fix compilation under Windows by Antoine Pitrou · 14 years ago
  96. 3e1fd27 Issue #9090: When a socket with a timeout fails with EWOULDBLOCK or EAGAIN, by Antoine Pitrou · 14 years ago
  97. 01c4289 Fix for issue #9568. by Ronald Oussoren · 14 years ago
  98. fa41e60 Issue #9599: Tweak loghelper algorithm to return slightly improved results for powers of 2. by Mark Dickinson · 14 years ago
  99. 6d7df63 Issue #9950: Fix socket.sendall() crash or misbehaviour when a signal is by Antoine Pitrou · 14 years ago
  100. 3b69db2 issue 9910 by Kristján Valur Jónsson · 14 years ago