1. f3b68b3 Issue #10478: Reentrant calls inside buffered IO objects (for example by by Antoine Pitrou · 14 years ago
  2. fa73555 correct logic when pos is after the string #10467 by Benjamin Peterson · 14 years ago
  3. bee3316 Modules/_io/bufferedio.c (buffered_dealloc_warn): Make it static. by Matthias Klose · 14 years ago
  4. 243757e Issue #10180: Pickling file objects is now explicitly forbidden, since by Antoine Pitrou · 14 years ago
  5. bbb0412 if FileIO.__init__ fails, close fd by Benjamin Peterson · 14 years ago
  6. 430d469 fix style by Benjamin Peterson · 14 years ago
  7. 8d2b51b Issue #10253: FileIO leaks a file descriptor when trying to open a file by Antoine Pitrou · 14 years ago
  8. e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are by Antoine Pitrou · 14 years ago
  9. ea5d17d In open(), only set the buffer size from st.st_blksize when it is greater by Antoine Pitrou · 14 years ago
  10. 28928ae #4829: better error message for invalid file mode by Georg Brandl · 14 years ago
  11. 328ec74 Issue #9854: The default read() implementation in io.RawIOBase now by Antoine Pitrou · 14 years ago
  12. 616453c More docstring updates by Amaury Forgeot d'Arc · 14 years ago
  13. 972ee13 Issue #5506: BytesIO objects now have a getbuffer() method exporting a by Antoine Pitrou · 14 years ago
  14. 0d739d7 Issue #9293: I/O streams now raise `io.UnsupportedOperation` when an by Antoine Pitrou · 14 years ago
  15. d5c3f6c BytesIO.getvalue() and StringIO.getvalue() are METH_NOARGS. by Antoine Pitrou · 14 years ago
  16. b46b9d5 Issue #9617: Signals received during a low-level write operation aren't by Antoine Pitrou · 14 years ago
  17. 32cfede Issue #9550: a BufferedReader could issue an additional read when the by Antoine Pitrou · 14 years ago
  18. c881f15 Issue #9448: Fix a leak of OS resources (mutexes or semaphores) when by Antoine Pitrou · 14 years ago
  19. e40ee50 #9184: fix default value for "buffering" param of open(). by Georg Brandl · 14 years ago
  20. f6c5783 Issue #6697: Check that _PyUnicode_AsString() result is not NULL in textio.c by Victor Stinner · 14 years ago
  21. ae6265f Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode by Victor Stinner · 14 years ago
  22. ae4b472 Merged revisions 80796 via svnmerge from by Antoine Pitrou · 14 years ago
  23. 6be8876 Merged revisions 80720 via svnmerge from by Antoine Pitrou · 14 years ago
  24. 2614cda Merged revisions 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from by Benjamin Peterson · 14 years ago
  25. 905a2ff Merged revisions 77890 via svnmerge from by Antoine Pitrou · 15 years ago
  26. 255058f don't accept bytes in FileIO.write #7785 by Benjamin Peterson · 15 years ago
  27. 5e8f6d1 #7417: add signature to open() docstring. by Georg Brandl · 15 years ago
  28. d5587bc Merged revisions 76896,76898 via svnmerge from by Antoine Pitrou · 15 years ago
  29. 0551613 Merged revisions 76807 via svnmerge from by Benjamin Peterson · 15 years ago
  30. bf5ff76 Merged revisions 76805 via svnmerge from by Benjamin Peterson · 15 years ago
  31. 1a0aaaa Merged revisions 76502 via svnmerge from by Mark Dickinson · 15 years ago
  32. a0dfa82 Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-75433,75437,75445,75501,75551,75572,75589-75591,75657,75742,75868,75952-75957,76057,76105,76139,76143,76162,76223 via svnmerge from by Benjamin Peterson · 15 years ago
  33. 5800b27 Merged revisions 76007 via svnmerge from by Antoine Pitrou · 15 years ago
  34. cb9285c Merged revisions 75939 via svnmerge from by Mark Dickinson · 15 years ago
  35. 60874b0 Merged revisions 75909 via svnmerge from by Mark Dickinson · 15 years ago
  36. d4aea71 Merged revisions 75905 via svnmerge from by Mark Dickinson · 15 years ago
  37. d430ebe Merged revisions 75879 via svnmerge from by Mark Dickinson · 15 years ago
  38. 238b109 Merged revisions 75728 via svnmerge from by Mark Dickinson · 15 years ago
  39. e1b60d4 Merged revisions 75258 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
  40. ca767bd Merged revisions 75007 via svnmerge from by Antoine Pitrou · 15 years ago
  41. ccd686a Merged revisions 74581 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
  42. a0ceb73 Merged revisions 74336 via svnmerge from by Antoine Pitrou · 15 years ago
  43. ba5c743 Issue 5449: Fix io.BytesIO to not accept arbitrary keywords by Alexandre Vassalotti · 15 years ago
  44. cf76e1a Issue #6218: Make io.BytesIO and io.StringIO picklable. by Alexandre Vassalotti · 15 years ago
  45. d2bb18b Issue #6241: Better type checking for the arguments of io.StringIO. by Alexandre Vassalotti · 15 years ago
  46. fc47704 Issue #6242: Fix deallocator of io.StringIO and io.BytesIO. by Alexandre Vassalotti · 15 years ago
  47. 892a37a Merged revisions 73603 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  48. 6a38ced just throw a normal AttributeError for no buffer attribute by Benjamin Peterson · 15 years ago
  49. 680bf1a move to a naming scheme with all lowercase and underscores by Benjamin Peterson · 15 years ago
  50. 2cfca79 stop throwing out all errors when PyObject_GetAttr fails by Benjamin Peterson · 15 years ago
  51. 0926ad1 give the C implementation of TextIOWrapper the errors property #6217 by Benjamin Peterson · 15 years ago
  52. 716c444 Issue #5761: Add the name of the underlying file to the repr() of various IO objects. by Antoine Pitrou · 15 years ago
  53. 8223c24 Merged revisions 72698-72699 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  54. c3583b2 Silence a compiler warning. by Raymond Hettinger · 15 years ago
  55. 81971ea correctly handle invalid operations on streams (like writing on a non-writable one) by Benjamin Peterson · 15 years ago
  56. e450185 Issue #5006: Better handling of unicode byte-order marks (BOM) in the io library. by Antoine Pitrou · 15 years ago
  57. 43c5778 Rename utf8b error handler to surrogateescape. by Martin v. Löwis · 15 years ago
  58. 011e842 Issue #5915: Implement PEP 383, Non-decodable Bytes in by Martin v. Löwis · 15 years ago
  59. d2e0c79 implement a detach() method for BufferedIOBase and TextIOBase #5883 by Benjamin Peterson · 15 years ago
  60. 1fea321 use NULL for the ends of tables by Benjamin Peterson · 15 years ago
  61. cf4c749 Issue #5734: BufferedRWPair was poorly tested and had several glaring bugs. by Antoine Pitrou · 15 years ago
  62. 711af3a #5502: accelerate binary buffered IO (especially small operations). by Antoine Pitrou · 15 years ago
  63. dfd7344 Merge revision 71222 from trunk: #5615: make it possible to configure --without-threads again. by Georg Brandl · 15 years ago
  64. 8f2b665 fix typo #5687 by Benjamin Peterson · 15 years ago
  65. 8d8d630 Issue 5682: Move _io module into its own subdirectory. by Alexandre Vassalotti · 15 years ago