1. 9802b39 PYTHONFSENCODING is not available on Windows or Mac OS X by Victor Stinner · 15 years ago
  2. 9943524 Ooops, finish test_sys fix: use expected variable by Victor Stinner · 15 years ago
  3. 85ca2af Fix test_sys about fs encoding for Windows and Mac OS X by Victor Stinner · 15 years ago
  4. 70f88c5 Fix test_os: workaround #8611 bug by Victor Stinner · 15 years ago
  5. 5ea823c Decode NIS data to fs encoding, using the surrogate error handler. by Martin v. Löwis · 15 years ago
  6. f241afa Fix Issue9638 - remove dead code from py3k imaplib by Senthil Kumaran · 15 years ago
  7. e8d5145 Create os.fsdecode(): decode from the filesystem encoding with surrogateescape by Victor Stinner · 15 years ago
  8. dbe6042 what's new 3.2: use :mod: by Victor Stinner · 15 years ago
  9. c732e3b test_sys: move tests at the right place by Victor Stinner · 15 years ago
  10. 358b63a Fix typo by Éric Araujo · 15 years ago
  11. 4ea04a3 #7647: add ST_RDONLY, ST_NOSUID constants to os module. by Andrew M. Kuchling · 15 years ago
  12. 0fc86b8 Fix indentation level by Éric Araujo · 15 years ago
  13. 3119ed7 Fix PyUnicode_EncodeFSDefault() indentation by Victor Stinner · 15 years ago
  14. 398356b Improve error message if the command is not decodable by Victor Stinner · 15 years ago
  15. 7e44b6b Add more tests to unicodedata with large code points by Amaury Forgeot d'Arc · 15 years ago
  16. d5f2b54 Fix reindent-rst.py: it works on binary files by Victor Stinner · 15 years ago
  17. 94908bb Issue #8622: Add PYTHONFSENCODING environment variable to override the by Victor Stinner · 15 years ago
  18. 56ab01b Fix stupid typo in test. by Amaury Forgeot d'Arc · 15 years ago
  19. 74a833f Decompose TESTFN_UNICODE on Mac OS X by Victor Stinner · 15 years ago
  20. b85e165 Issue #5737: Add Solaris-specific mnemonics in the errno module. Patch by by Antoine Pitrou · 15 years ago
  21. 324ac65 #5127: Even on narrow unicode builds, the C functions that access the Unicode by Amaury Forgeot d'Arc · 15 years ago
  22. 36e778e Issue #9433: The "-j" option to regrtest now works under Windows too. by Antoine Pitrou · 15 years ago
  23. 7ff5913 Fix Issue672656 - Securing pydoc server. by Senthil Kumaran · 15 years ago
  24. dfaf9ec Restore GIL in nis_cat in case of error. by Martin v. Löwis · 15 years ago
  25. c14190d Add versionadded tag to PyModule_GetFilenameObject() doc by Victor Stinner · 15 years ago
  26. d91df1a Improve PEP 383 tests (in test_os) by Victor Stinner · 15 years ago
  27. 6c00c14 Issue #9425: Create PyModule_GetFilenameObject() function by Victor Stinner · 15 years ago
  28. 6951157 Correct library name that Ask will work on. by Martin v. Löwis · 15 years ago
  29. 382d917 Add Ask Solem. by Martin v. Löwis · 15 years ago
  30. 6b06da5 Remove unused functions _PyImport_FindModule and _PyImport_IsScript by Victor Stinner · 15 years ago
  31. 0e5a41b libpython.py: py-bt commands escape unencodable characters by Victor Stinner · 15 years ago
  32. 6961bd6 Issue #8063: Call _PyGILState_Init() earlier in Py_InitializeEx(). by Victor Stinner · 15 years ago
  33. 6009ece Replace :func: by :cfunc: by Victor Stinner · 15 years ago
  34. f5be090 Fix example by Éric Araujo · 15 years ago
  35. cdfe1c5 Add versionadded tags by Antoine Pitrou · 15 years ago
  36. bf1a018 Modernize gzip examples by Antoine Pitrou · 15 years ago
  37. 79c5ef1 Issue #3488: Provide convenient shorthand functions `gzip.compress` by Antoine Pitrou · 15 years ago
  38. 852823d Cleanup and correct a few ints to be Py_ssize_t. by Brian Curtin · 15 years ago
  39. abb3351 Properly downcast from size_t/Py_ssize_t in a few places. by Brian Curtin · 15 years ago
  40. 19467d2 Clean some 64-bit issues. Also, always spell "ssize_t" "Py_ssize_t". by Antoine Pitrou · 15 years ago
  41. 3fccfcb Minor rewording to docs for the lru_cache decorator by Raymond Hettinger · 15 years ago
  42. 554f334 Fix <deque iterator>.__length_hint__() under 64-bit Windows. by Antoine Pitrou · 15 years ago
  43. 671b4d9 Issue #9612: The set object is now 64-bit clean under Windows. by Antoine Pitrou · 15 years ago
  44. 7ac98ae wrap by Benjamin Peterson · 15 years ago
  45. 42382fe fix issue #8807: adds a context parameter to POP3_SSL class. by Giampaolo Rodolà · 15 years ago
  46. ccfb91c fix issue #8866: parameters passed to socket.getaddrinfo can now be specified as single keyword arguments. by Giampaolo Rodolà · 15 years ago
  47. 67b21b7 Consistency check for versionadded/changed directives. by Georg Brandl · 15 years ago
  48. 9e25701 Markup nits. by Georg Brandl · 15 years ago
  49. d26c18a Issue #8202: Set sys.argv[0] to -m rather than -c while searching for the module to execute. Also updates all the cmd_line_script tests to validate the setting of sys.path[0] and the current working directory by Nick Coghlan · 15 years ago
  50. 46e6380 Another attempt at pacifying the windows buildbots by ignoring all the variable information in the dis.code_info tests by Nick Coghlan · 15 years ago
  51. 09c8123 Address XXX comment in dis.py: inspect.py now attempts to reuse the dis.py compiler flag values before resorting to defining its own by Nick Coghlan · 15 years ago
  52. 77203ad Ignore the exact ID value for the nested function in the dis.code_info tests by Nick Coghlan · 15 years ago
  53. fc8b205 Correct a couple of assert* methods. Patch by Dave Malcolm. by Ezio Melotti · 15 years ago
  54. eae2da1 Issue 9147: Add dis.code_info() by Nick Coghlan · 15 years ago
  55. 9887683 Document and test the resolution of issue 3445 (tolerate missing attributes in functools.update_wrapper, previously implemented as a side effect of the __annotations__ copying patch) and implement issue 9567 (add a __wrapped__ attribute when using update_wrapper) by Nick Coghlan · 15 years ago
  56. 632a0c1 Remove some lingering remnants of the short-lived functools.lfu_cache by Nick Coghlan · 15 years ago
  57. ad1e0c5 added versionadded by Benjamin Peterson · 15 years ago
  58. 052a02b add tests for mknod() and mkfifo() #9569 by Benjamin Peterson · 15 years ago
  59. 82c4885 remove test for oldstyle classes by Benjamin Peterson · 15 years ago
  60. 83cd3b9 use assertTrue/assertFalse by Benjamin Peterson · 15 years ago
  61. 45c257f add support for abstract class and static methods #5867 by Benjamin Peterson · 15 years ago
  62. 36e7911 test_zipimport: fix test name by Victor Stinner · 15 years ago
  63. 4a3733d Issue #9425: save/restore exception on filename encoding by Victor Stinner · 15 years ago
  64. 028dd97 Issue #9425: zipimporter_repr() uses unicode by Victor Stinner · 15 years ago
  65. 60fe8d9 Issue #9425: get_data() uses an unicode path by Victor Stinner · 15 years ago
  66. 844807e r82659 reintroduced some tab characters. Untabify again. by Amaury Forgeot d'Arc · 15 years ago
  67. f2b69df Fix compilation warning on Windows by Amaury Forgeot d'Arc · 15 years ago
  68. ef8d95c Issue #9425: Create Py_UNICODE_strncmp() function by Victor Stinner · 15 years ago
  69. 405038a Mark myself as assignable for winreg, and put myself down for Windows. by Brian Curtin · 15 years ago
  70. 977a684 Issue #8983: Corrected docstrings. by Alexander Belopolsky · 15 years ago
  71. 4a339ad Add Tim Golden as interested in Windows by Tim Golden · 15 years ago
  72. c9c29e2 I get it wrong in r84097: s/relative/absolute/ by Florent Xicluna · 15 years ago
  73. e29e6bf Issue #665761: functools.reduce() will no longer mask exceptions other by Alexander Belopolsky · 15 years ago
  74. 27354cc Use test.support and unittest features. Fix duplicated test (bad merge in r79033). Fix comment for issue #7902. by Florent Xicluna · 15 years ago
  75. ad5b1df Add versionadded tag to PySys_FormatStd*() functions doc by Victor Stinner · 15 years ago
  76. 2460a43 Issue #9425: read_directory() is fully unicode compliant by Victor Stinner · 15 years ago
  77. 7976663 Issue #9599: Create PySys_FormatStdout() and PySys_FormatStderr() by Victor Stinner · 15 years ago
  78. 982c018 Remove debug hack by Antoine Pitrou · 15 years ago
  79. 677d95c fix getaddrinfo test failure on OSX caused by AI_CANNAME erroneously used as the value for 'proto' by Giampaolo Rodolà · 15 years ago
  80. daf2350 close down sockets held by asyncore at end of test; closes issue9619 by Richard Jones · 15 years ago
  81. b14ac8c Save and restore the global asyncore.socket_map, and warn if a test modified it by Antoine Pitrou · 15 years ago
  82. ed98636 Add debug output to the asyncore test by Antoine Pitrou · 15 years ago
  83. f4c7bad Put test_ciphers in NetworkedTests by Antoine Pitrou · 15 years ago
  84. 968dc03 Following Ezio's suggestion, force verbose mode on test_ssl to diagnose freezes on 3.x by Antoine Pitrou · 15 years ago
  85. e3c39ae Replace readfp() with read_file() in configparser documentation. by Florent Xicluna · 15 years ago
  86. dc69274 Replace the deprecated ConfigParser.readfp() method, and fix the incomplete merge in r82293. by Florent Xicluna · 15 years ago
  87. a0241c8 Fix TESTFN_UNENCODABLE of test.support on Mac OS X by Victor Stinner · 15 years ago
  88. 4045575 Fix more 64-bit warnings. by Antoine Pitrou · 15 years ago
  89. 22e4155 Fix other warnings under 64-bit Windows. by Antoine Pitrou · 15 years ago
  90. 47019e5 Fix (harmless) warning with MSVC. by Antoine Pitrou · 15 years ago
  91. 9b49192 Fix indentation and remove dead code. by Antoine Pitrou · 15 years ago
  92. 0010d37 Fix some compilation warnings under 64-bit Windows (issue #9566). by Antoine Pitrou · 15 years ago
  93. 1d0aaea Add pgen.stamp to svn:ignore and friends by Antoine Pitrou · 15 years ago
  94. 907229a Don't run pgen twice when using make -j. by Martin v. Löwis · 15 years ago
  95. d17f219 Oops, fix a typo in NEWS: surrogateespace => surrogateescape by Victor Stinner · 15 years ago
  96. 8858d2c Clarify whatsnew entry for short float repr: roundtripping is not a new feature in 2.7. by Mark Dickinson · 15 years ago
  97. e039ffe Issue #9605: posix.getlogin() decodes the username with file filesystem by Victor Stinner · 15 years ago
  98. 61ec5dc Issue #9604: posix.initgroups() encodes the username using the fileystem by Victor Stinner · 15 years ago
  99. 5fe6de8 Issue #9603: posix.ttyname() and posix.ctermid() decode the terminal name by Victor Stinner · 15 years ago
  100. 0b5669c Fix __all__. by Raymond Hettinger · 15 years ago