1. 00da4e0 Remove unneeded casts to hashfunc. by Georg Brandl · 14 years ago
  2. d49bf5e Fix type of hash function. by Georg Brandl · 14 years ago
  3. 646fdd6 Fix compiler warning about unused static function. by Georg Brandl · 14 years ago
  4. c7f4af4 Fix compiler warnings about formatting pid_t as an int, by always casting to long. by Georg Brandl · 14 years ago
  5. e194dd6 #678250: Make mmap flush a noop on ACCESS_READ and ACCESS_COPY. by R. David Murray · 14 years ago
  6. 051176f #4499: silence compiler warning on AIX. by R. David Murray · 14 years ago
  7. 7cefc30 Tighten up 'byte string' wording in base64 docs. by R. David Murray · 14 years ago
  8. a90032a #1343: Add short_empty_elements option to XMLGenerator. by R. David Murray · 14 years ago
  9. 961aaf5 Note the resolution of issue 9778. by Skip Montanaro · 14 years ago
  10. e7dfeeb -1 is reserved for errors by Benjamin Peterson · 14 years ago
  11. e6baa46 fix prototype by Benjamin Peterson · 14 years ago
  12. 223f091 fix strict aliasing warnings by Benjamin Peterson · 14 years ago
  13. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  14. 6fb4575 test_httpservers: Python CGI scripts have to be encoded to utf-8 by Victor Stinner · 14 years ago
  15. 3218c31 test_httpservers: Fix skip test check, the python executable path have to be by Victor Stinner · 14 years ago
  16. 23d05c1 use helper hash unimplemented function by Benjamin Peterson · 14 years ago
  17. a2e7d9b Fix T_BOOL bug of issue 8845. by Martin v. Löwis · 14 years ago
  18. 0b0ca0c test_httpservers: skip CGI tests if Python executable path is not encodable by Victor Stinner · 14 years ago
  19. 3ebc22a Remove the external non-python.org hyperlink and point people to by Gregory P. Smith · 14 years ago
  20. c980ffd Drop OPT:Olimit, as it confuses SunPRO (and other compilers). by Martin v. Löwis · 14 years ago
  21. 6ffbee7 libpython: implementation of os.fsencode() with surrogateescape error handler by Victor Stinner · 14 years ago
  22. e0f3268 run_file(): encode the filename with PyUnicode_EncodeFSDefault() instead of by Victor Stinner · 14 years ago
  23. c049982 compiler_error(): use PyUnicode_DecodeFSDefault() to decode the filename, by Victor Stinner · 14 years ago
  24. 15a71cd PyErr_SyntaxLocationEx() uses PyUnicode_DecodeFSDefault(), instead of by Victor Stinner · 14 years ago
  25. 5b5d8d5 The py_decref macro was incorrect and unnecessary. by Gregory P. Smith · 14 years ago
  26. 03efcf2 * Applys part of the patch from http://bugs.python.org/issue3631 to add by Gregory P. Smith · 14 years ago
  27. 8690ae5 - Accept Oracle Berkeley DB 5.0 and 5.1 as backend for the dbm extension. by Matthias Klose · 14 years ago
  28. c961322 Syntax fixes for examples in the Doc/includes by Senthil Kumaran · 14 years ago
  29. 134c35b #9730: fix example. by Georg Brandl · 14 years ago
  30. 2379877 Fix documentation of dis.opmap direction. by Georg Brandl · 14 years ago
  31. c16e8f1 Make twisted example a bit more logical. by Georg Brandl · 14 years ago
  32. c814826 Port changes to pickle docs apparently lost in py3k. by Georg Brandl · 14 years ago
  33. 8527126 #9237: document sys.call_tracing(). by Georg Brandl · 14 years ago
  34. 12c695c #5121: fix claims about default values leading to segfaults. by Georg Brandl · 14 years ago
  35. 2aff335 #9204: remove mentions of removed types in the types module. by Georg Brandl · 14 years ago
  36. 418cc73 Fix capitalization. by Georg Brandl · 14 years ago
  37. ee2538b Fix Issue10119 - test_urllibnet failure when using support.transient_internet. by Senthil Kumaran · 14 years ago
  38. 6f4e68d #5962: clarify sys.exit() vs. threads. by Georg Brandl · 14 years ago
  39. a192828 #9138: reword introduction to classes in Python. by Georg Brandl · 14 years ago
  40. f414272 #9117: fix syntax for class definition. by Georg Brandl · 14 years ago
  41. e0bf91d Some markup and style fixes in argparse docs. by Georg Brandl · 14 years ago
  42. 9375492 #9112: document error() and exit() methods of ArgumentParser. by Georg Brandl · 14 years ago
  43. 0036bcf #9105: move pickle warning to a bit more prominent location. by Georg Brandl · 14 years ago
  44. 047e486 Remove second parser module example; it referred to non-readily-available example files, and this kind of discovery is much better done with the AST nowadays anyway. by Georg Brandl · 14 years ago
  45. fc9794a Make file names consistent. by Georg Brandl · 14 years ago
  46. 4985ff2 #9086: correct wrong terminology about linking with pythonXY.dll. by Georg Brandl · 14 years ago
  47. 531d76b #5212: md5 weaknesses do not affect hmac, so remove the note about that. by Georg Brandl · 14 years ago
  48. f3d0087 Fix copy-paste error in example. by Georg Brandl · 14 years ago
  49. 7306ad5 #459007: merge info from PC/getpathp.c and using/windows.rst to document the forming of sys.path under Windows. by Georg Brandl · 14 years ago
  50. eec2d76 #8968: add actual name of token constants. by Georg Brandl · 14 years ago
  51. 80b75fd Fix hmac docs: it takes and returns bytes, except for hexdigest(). by Georg Brandl · 14 years ago
  52. 7716ca6 #8855: add shelve security warning. by Georg Brandl · 14 years ago
  53. 96115fb2 #8811: small fixes to sqlite3 docs. by Georg Brandl · 14 years ago
  54. 8e9eb95 #8686: remove potentially confusing wording that does not add any value. by Georg Brandl · 14 years ago
  55. edc9e7f #8556: use less confusing mapping key in example. by Georg Brandl · 14 years ago
  56. 20f11fe Fix compilation warning in _ctypes module on Window by Amaury Forgeot d'Arc · 14 years ago
  57. c913989 On Windows, remove compilation warnings with the zlib and gzip modules. by Amaury Forgeot d'Arc · 14 years ago
  58. dd909db #10058: tweak wording about exception returns. by Georg Brandl · 14 years ago
  59. 17ef0d5 Note that maxtasksperchild is new in 3.2. by Georg Brandl · 14 years ago
  60. feedda2 Avoid hanging the test on netbsd5. by Gregory P. Smith · 14 years ago
  61. 0f61dd0 skip test_itimer_virtual on NetBSD to prevent the test suite from hanging. by Gregory P. Smith · 14 years ago
  62. 68e0135 Fix multiprocessing Semaphore's on netbsd5. SEM_VALUE_MAX is defined by Gregory P. Smith · 14 years ago
  63. ed7916d find_module(): use FS encoding to display the missing __init__ warning by Victor Stinner · 14 years ago
  64. e3874ed test_cmd_line_script: format paths with ascii() instead of repr() by Victor Stinner · 14 years ago
  65. ca9f128 use assertion methods by Benjamin Peterson · 14 years ago
  66. cb17094 disable the garbage collector while collecting traces, so that __del__s don't get caught by Benjamin Peterson · 14 years ago
  67. fc49f2a remove rather pointless test by Benjamin Peterson · 14 years ago
  68. 49d3f25 _PyImport_FixupExtension() and _PyImport_FindExtension() uses FS encoding by Victor Stinner · 14 years ago
  69. 3e85dfd applying netbsd-wizs-mod.patch from issue5510 - by Gregory P. Smith · 14 years ago
  70. b603d03 fix for netbsd. by Gregory P. Smith · 14 years ago
  71. f6782ac test_subprocess: use surrogateescape error handler to write shell scripts by Victor Stinner · 14 years ago
  72. 61aad57 Oops, fix my previous commit (r85583) on calculate_path() by Victor Stinner · 14 years ago
  73. dc4b2a7 calculate_path(): use _Py_char2wchar() to decode the PATH environment variable, by Victor Stinner · 14 years ago
  74. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago
  75. 0a1b8cb _Py_wrealpath() uses _Py_char2wchar() to decode the result, to support by Victor Stinner · 14 years ago
  76. 350147b _Py_wreadlink(): catch _Py_char2wchar() failure by Victor Stinner · 14 years ago
  77. 3f711f4 _Py_wreadlink() uses _Py_char2wchar() to decode the result, to support by Victor Stinner · 14 years ago
  78. 9d39639 Issue #10123: Don't use non-ascii filenames in test_doctest tests. Add a by Victor Stinner · 14 years ago
  79. 2a53139 Get rid of a "unused static function" warning. by Georg Brandl · 14 years ago
  80. 4cb3dbd Added __pycache__ to svn:ignore property by Alexander Belopolsky · 14 years ago
  81. 573caa3 #10124: typo fix. by Georg Brandl · 14 years ago
  82. 8e4ddcf #10122: typo fix. by Georg Brandl · 14 years ago
  83. a40453d abiflags: alphabetize and versionadded by Barry Warsaw · 14 years ago
  84. 2f2ed1f Fix ast_error_finish() and err_input(): filename can be NULL by Victor Stinner · 14 years ago
  85. 4c7c8c3 Issue #9713, #10114: Parser functions (eg. PyParser_ASTFromFile) expects by Victor Stinner · 14 years ago
  86. 5a7913e zipimport: catch _PyUnicode_AsString() failure in get_code_from_data() by Victor Stinner · 14 years ago
  87. 2c2bfe5 Fixes issue 10120 (concurrent.futures module is not installed properly), patch by Neil Muller by Brian Quinlan · 14 years ago
  88. 6d38956 Fix incorrect maintainer name by Brian Quinlan · 14 years ago
  89. d1f0218 Add bquinlan as the maintainer of concurrent.futures by Brian Quinlan · 14 years ago
  90. 230b206 don't identify the toplevel namespace by name #9997 by Benjamin Peterson · 14 years ago
  91. 294a9fc fix refleak by Benjamin Peterson · 14 years ago
  92. f6219a5 Add NEWS for issue 9807 part 1. by Barry Warsaw · 14 years ago
  93. 8cf4eae First (uncontroversial) part of issue 9807. by Barry Warsaw · 14 years ago
  94. d8d835b run autoconf by Benjamin Peterson · 14 years ago
  95. e16cda9 #9862: On AIX PIPE_BUF is broken. Make it 512. by R. David Murray · 14 years ago
  96. 88bd891 Fix imp_cache_from_source(): Decode make_compiled_pathname() result from the by Victor Stinner · 14 years ago
  97. 1a56303 imp_load_module() uses PyUnicode_FSConverter() to support surrogates in module by Victor Stinner · 14 years ago
  98. 4231173 revert change in inappropiate branch by Benjamin Peterson · 14 years ago
  99. 3ea23dd imp.cache_from_source() uses PyUnicode_FSConverter() to support surrogates in by Victor Stinner · 14 years ago
  100. 392c92a #10072: assume a bit less knowledge of the FTP protocol in the ftplib docs. by Georg Brandl · 14 years ago