1. e549ead Merged revisions 70554,70588-70589,70598,70605,70611-70621,70623-70624,70626-70627 via svnmerge from by Benjamin Peterson · 16 years ago
  2. 636950f Remove special logic that closes HTTPConnection socket on EPIPE. by Jeremy Hylton · 16 years ago
  3. 7c1692d Replace references to httplib with http.client. by Jeremy Hylton · 16 years ago
  4. 236654b Fix some string encoding issues with entity bodies in HTTP requests. by Jeremy Hylton · 16 years ago
  5. 98eb6c2 Fix compatibility issue with HTTPMessage class. by Jeremy Hylton · 16 years ago
  6. 914ab45 Sort import list. by Jeremy Hylton · 16 years ago
  7. e6fdd04 Replace duplicate code in http.server with call to http.client.parse_headers(). by Jeremy Hylton · 16 years ago
  8. ef9f48e Simplify complex expression. by Jeremy Hylton · 16 years ago
  9. 5f28b7b Merged revisions 70518,70521,70590,70594-70595 via svnmerge from by Benjamin Peterson · 16 years ago
  10. b476d59 Add __enter__ and __exit__ methods to addbase() so that it supports with. by Jeremy Hylton · 16 years ago
  11. 0983274 fix isprintable() on space characters #5126 by Benjamin Peterson · 16 years ago
  12. 59406a9 officially deprecated max_buffer_size by Benjamin Peterson · 16 years ago
  13. 1ef7c6b Add a few more tests for urllib.parse.urlencode. Fix some long lines. by Jeremy Hylton · 16 years ago
  14. 230feba urlencode: by Jeremy Hylton · 16 years ago
  15. f819886 Simplify a few complicated expressions. by Jeremy Hylton · 16 years ago
  16. a4de60a Whitespace normalization. by Jeremy Hylton · 16 years ago
  17. 663fffa Fix a circular import dependency. by Brett Cannon · 16 years ago
  18. 52dc06b Separate initialization from clearing. by Raymond Hettinger · 16 years ago
  19. 9b8d24b reuse tokenize.detect_encoding in linecache instead of a custom solution by Benjamin Peterson · 16 years ago
  20. a8abe86 http://bugs.python.org/issue5544 by Kristján Valur Jónsson · 16 years ago
  21. 4c93dcb Merged revisions 70574 via svnmerge from by Benjamin Peterson · 16 years ago
  22. 52baa29 Merged revisions 70558,70561-70563,70568-70571 via svnmerge from by Benjamin Peterson · 16 years ago
  23. 5254c04 Merged revisions 70555 via svnmerge from by Benjamin Peterson · 16 years ago
  24. 3a652b1 Merged revisions 70546 via svnmerge from by Antoine Pitrou · 16 years ago
  25. 798ee1a Make imported name private and wrap long-line. by Raymond Hettinger · 16 years ago
  26. f173654 Forward port r70533 and r70538. by Raymond Hettinger · 16 years ago
  27. 42e0091 Merged revisions 70523 via svnmerge from by Lars Gustäbel · 16 years ago
  28. 0ed5245 port the queue change r70405 by Benjamin Peterson · 16 years ago
  29. f07d002 Merged revisions 70342,70385-70387,70389-70390,70392-70393,70395,70400,70405-70406,70418,70438,70464,70468 via svnmerge from by Benjamin Peterson · 16 years ago
  30. ae681df - Issue #5463: In struct module, remove deprecated overflow wrapping by Mark Dickinson · 16 years ago
  31. e43b060 Document import's semantics for the language reference. This includes filling by Brett Cannon · 16 years ago
  32. b487e63 stringio doesn't have an encoding by Benjamin Peterson · 16 years ago
  33. bfb5456 Fix typo by Raymond Hettinger · 16 years ago
  34. 18ed2cb Forward port 70475: Add implementation notes. Put methods in more readable order. by Raymond Hettinger · 16 years ago
  35. dc879f0 Forward port r70470 and r70473 for OrderedDict to use a doubly linked list. by Raymond Hettinger · 16 years ago
  36. 6cf17aa svnmerge from trunk for r70457 (sorry, I accidentally deleted the commit message) by Antoine Pitrou · 16 years ago
  37. bd79264 Issue #4258: Make it possible to use 30-bit digits for PyLongs: by Mark Dickinson · 16 years ago
  38. 7303b59 Merged revisions 70444 via svnmerge from by Mark Dickinson · 16 years ago
  39. 79f5203 Merged revisions 70439 via svnmerge from by Mark Dickinson · 16 years ago
  40. ad41634 Merged revisions 70430 via svnmerge from by Mark Dickinson · 16 years ago
  41. 8d11013 Implement InspectLoader for FrozenImporter. by Brett Cannon · 16 years ago
  42. a113ac5 Implement InspectLoader for BuiltinImporter. by Brett Cannon · 16 years ago
  43. 7aa21f7 A few more docstring/API cleanups for importlib. by Brett Cannon · 16 years ago
  44. 0e0d8a6 Clean up docstring from importlib.util.module_for_loader. by Brett Cannon · 16 years ago
  45. 8ec9044 Merged revisions 70364 via svnmerge from by Eric Smith · 16 years ago
  46. 350370c Merged revisions 70356 via svnmerge from by Antoine Pitrou · 16 years ago
  47. a28fcfd Issue #5016: FileIO.seekable() could return False if the file position by Antoine Pitrou · 16 years ago
  48. 0ae29cf The error detection code in FileIO.close() could fail to reflect the `errno` value, and report it as -1 instead. by Antoine Pitrou · 16 years ago
  49. 652e707 Issue #5392: when a very low recursion limit was set, the interpreter would by Antoine Pitrou · 16 years ago
  50. f87e04d Finish properly hiding importlib implementation code. by Brett Cannon · 16 years ago
  51. e9103d2 Last big re-organization of importlib._bootstrap. Should actually be able to find something in the file now. by Brett Cannon · 16 years ago
  52. ce43ddf Do a little bit of reorganization on importlib._bootstrap. by Brett Cannon · 16 years ago
  53. 3eeaa0a Make utility code in importlib._bootstrap private. by Brett Cannon · 16 years ago
  54. 9495f18 Define importlib.__init__.__all__. by Brett Cannon · 16 years ago
  55. 516db94 Merged revisions 70308 via svnmerge from by Tarek Ziadé · 16 years ago
  56. c59cd68 Add a NOTE for importlib to fill in the docstrings for the ABCs. by Brett Cannon · 16 years ago
  57. 5bb0f0e For collections.deque() objects, expose the maxlen parameter as a read-only attribute. by Raymond Hettinger · 16 years ago
  58. 060c7f6 Small optimization for corner case where maxlen==0. by Raymond Hettinger · 16 years ago
  59. 2cf03a8 Implement importlib.util.set_loader: a decorator to automatically set by Brett Cannon · 16 years ago
  60. d43b30b Implement get_source for importlib.abc.PyLoader using source_path and get_data. by Brett Cannon · 16 years ago
  61. e0124bd Merged revisions 69998-69999,70002,70022-70023,70025-70026,70061,70086,70145,70171,70183,70188,70235,70244,70275,70281 via svnmerge from by Benjamin Peterson · 16 years ago
  62. e2085be Clean up importlib NOTES so it only contains short term goals. by Brett Cannon · 16 years ago
  63. 2a922ed Introduce importlib.abc. The module contains various ABCs related to imports by Brett Cannon · 16 years ago
  64. ba3fcf1 Remove a dead XXX comment. by Brett Cannon · 16 years ago
  65. 29dff8a Fix importlib._bootstrap.PyPycLoader.load_module() to better handle by Brett Cannon · 16 years ago
  66. 9fd459a hack StringIO's repr, so it doesn't give an encoding by Benjamin Peterson · 16 years ago
  67. c4c0eae give TextIOWrapper a repr that tells you the encoding by Benjamin Peterson · 16 years ago
  68. f2b55fb Make importlib.test.source.util.write_bytecode reset sys.dont_write_bytecode. by Brett Cannon · 16 years ago
  69. 1014d42 Minor changes to Python source base loader. by Brett Cannon · 16 years ago
  70. 79925fd Skip case-sensitivity tests for extension modules if _testcapi cannot be found. by Brett Cannon · 16 years ago
  71. ec00e2f Add notice about strange behaviour of the bigmem tests by Antoine Pitrou · 16 years ago
  72. 7cdb495 Issue #3700: make test_bigmem py3k-compatible, and add bytes/bytearray tests by Antoine Pitrou · 16 years ago
  73. a58a626 bump version to 3.1a1 by Benjamin Peterson · 16 years ago
  74. f45b4cc Merged revisions 70223 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 16 years ago
  75. 56f5be5 Merged revisions 70218-70219 via svnmerge from svn+ssh://pythondev/python/trunk by Guilherme Polo · 16 years ago
  76. b3c6ed5 fixed except syntax for py3 by Tarek Ziadé · 16 years ago
  77. 63b64c0 Merged revisions 70212 via svnmerge from by Tarek Ziadé · 16 years ago
  78. 113f607 simplify and beautify code by Benjamin Peterson · 16 years ago
  79. 611eaf0 Document the suggested alternative to emtpy() and full(). by Raymond Hettinger · 16 years ago
  80. 66913e2 Issue #5433: Excessive newline detection optimization in IncrementalNewlineDecoder by Antoine Pitrou · 16 years ago
  81. 54d0df6 Issue #5334: array.fromfile() failed to insert values when EOFError was raised. by Hirokazu Yamamoto · 16 years ago
  82. 394ee00 remove usage of the deprecated max_buffer_size by Benjamin Peterson · 16 years ago
  83. 9b78925 Merged revisions 70193 via svnmerge from by Hirokazu Yamamoto · 16 years ago
  84. 8e722bc Merged revisions 70189 via svnmerge from by Hirokazu Yamamoto · 16 years ago
  85. 5ac89cc rather pointless XXX by Benjamin Peterson · 16 years ago
  86. 5fd871d rename by Benjamin Peterson · 16 years ago
  87. 9363a65 fix #4862 in _pyio: reset the decoder on seek(0) by Benjamin Peterson · 16 years ago
  88. 03cfa73 These are present in the trunk but no longer in 3.x, which causes problems by Ronald Oussoren · 16 years ago
  89. 8954cd3 Fix for issue #5408. This only enables test_osx_env when the current build by Ronald Oussoren · 16 years ago
  90. 435aad8 Rename importlib.util.set___package__ to set_package. by Brett Cannon · 16 years ago
  91. 1fcadce Fix failures introduced by buggy merge (2) by Antoine Pitrou · 16 years ago
  92. 7fb111b Fix failures introduced by buggy merge (1) by Antoine Pitrou · 16 years ago
  93. 7c9875c Move importlib over to _io. by Brett Cannon · 16 years ago
  94. b5f03c6 Add a test for importlib.import_module. by Brett Cannon · 16 years ago
  95. 4fa88fa merge the io-c branch: C implementation of the io module by Benjamin Peterson · 16 years ago
  96. b212157 Additional test for __reduce__. by Raymond Hettinger · 16 years ago
  97. 89194ff Now that __keys are fully hidden, switch the underlying structure by Raymond Hettinger · 16 years ago
  98. 0c98817 Merged revisions 70137 via svnmerge from by Hirokazu Yamamoto · 16 years ago
  99. 5b26fb5 Add another test. by Raymond Hettinger · 16 years ago
  100. 14b89ff Fix-up __reduce__ which could not reach the __keys variable indirectly.' by Raymond Hettinger · 16 years ago