1. ae6265f Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode by Victor Stinner · 14 years ago
  2. ae4b472 Merged revisions 80796 via svnmerge from by Antoine Pitrou · 14 years ago
  3. 2614cda Merged revisions 78338,78345-78346,78561-78562,78566,78574,78581,78634,78660,78675 via svnmerge from by Benjamin Peterson · 14 years ago
  4. 905a2ff Merged revisions 77890 via svnmerge from by Antoine Pitrou · 14 years ago
  5. 255058f don't accept bytes in FileIO.write #7785 by Benjamin Peterson · 14 years ago
  6. bf5ff76 Merged revisions 76805 via svnmerge from by Benjamin Peterson · 15 years ago
  7. ca767bd Merged revisions 75007 via svnmerge from by Antoine Pitrou · 15 years ago
  8. 892a37a Merged revisions 73603 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  9. 680bf1a move to a naming scheme with all lowercase and underscores by Benjamin Peterson · 15 years ago
  10. 716c444 Issue #5761: Add the name of the underlying file to the repr() of various IO objects. by Antoine Pitrou · 15 years ago
  11. 8223c24 Merged revisions 72698-72699 via svnmerge from by Hirokazu Yamamoto · 15 years ago
  12. c3583b2 Silence a compiler warning. by Raymond Hettinger · 15 years ago
  13. 43c5778 Rename utf8b error handler to surrogateescape. by Martin v. Löwis · 15 years ago
  14. 011e842 Issue #5915: Implement PEP 383, Non-decodable Bytes in by Martin v. Löwis · 15 years ago
  15. 1fea321 use NULL for the ends of tables by Benjamin Peterson · 15 years ago
  16. 8d8d630 Issue 5682: Move _io module into its own subdirectory. by Alexandre Vassalotti · 15 years ago[Renamed from Modules/_fileio.c]
  17. 7d037a7 Plug another leak, and finally add a test for #1174606 (read() from /dev/zero). by Antoine Pitrou · 15 years ago
  18. 8e21fb2 Fix leak in _fileio.c (patch by Hirokazu Yamamoto) by Antoine Pitrou · 15 years ago
  19. 9041daa Restore a conditional I removed by mistake. by Antoine Pitrou · 15 years ago
  20. 66994e1 Issue #1174606: Calling read() without arguments of an unbounded file by Antoine Pitrou · 15 years ago
  21. a8abe86 http://bugs.python.org/issue5544 by Kristján Valur Jónsson · 15 years ago
  22. 8915e0e http://bugs.python.org/issue5544 by Kristján Valur Jónsson · 15 years ago
  23. dc7c128 http://bugs.python.org/issue5544 by Kristján Valur Jónsson · 15 years ago
  24. a28fcfd Issue #5016: FileIO.seekable() could return False if the file position by Antoine Pitrou · 15 years ago
  25. 0ae29cf The error detection code in FileIO.close() could fail to reflect the `errno` value, and report it as -1 instead. by Antoine Pitrou · 15 years ago
  26. 9a8082f FileIO.readinto() isn't going anywhere by Benjamin Peterson · 15 years ago
  27. 7fb111b Fix failures introduced by buggy merge (1) by Antoine Pitrou · 15 years ago
  28. 4fa88fa merge the io-c branch: C implementation of the io module by Benjamin Peterson · 15 years ago
  29. f91df04 Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,69519-69521 via svnmerge from by Benjamin Peterson · 15 years ago
  30. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  31. 08838b6 Merged revisions 68835 via svnmerge from by Antoine Pitrou · 15 years ago
  32. 4f7945f Fix typo by Antoine Pitrou · 15 years ago
  33. 7aedf11 fix compiler warning by Benjamin Peterson · 15 years ago
  34. 806d402 Merged revisions 68755 via svnmerge from by Benjamin Peterson · 15 years ago
  35. 0f22d69 Merged revisions 68134 via svnmerge from by Hirokazu Yamamoto · 16 years ago
  36. 1efc23c Merged revisions 68016 via svnmerge from by Benjamin Peterson · 16 years ago
  37. 19288c2 Fix an issue in the tokenizer, where a file is opened by fd, but the underlying PyFileIO object wasn created with the closefd attribute true. by Kristján Valur Jónsson · 16 years ago
  38. a872de5 Fixed issue #4533: File read operation was dreadfully slow by Christian Heimes · 16 years ago
  39. 44309e6 make FileIO.mode always include 'b' by Benjamin Peterson · 16 years ago
  40. ecc42a2 Fixed issue #4233. by Christian Heimes · 16 years ago
  41. c0747cf Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via svnmerge from by Benjamin Peterson · 16 years ago
  42. df32b39 Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members. by Christian Heimes · 16 years ago
  43. 3e4f055 Merged revisions 66045,66048-66049,66053,66060,66062-66063,66065,66067,66071-66074,66080,66082-66083,66090-66093,66097-66099,66103,66105,66110,66118 via svnmerge from by Benjamin Peterson · 16 years ago
  44. 6e0e0e6 Merged revisions 66018 via svnmerge from by Neal Norwitz · 16 years ago
  45. 2f99b24 Merged revisions 66006 via svnmerge from by Neal Norwitz · 16 years ago
  46. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  47. 86b2fb9 Merged revisions 64623,64640,64665,64687,64689-64690,64719,64721,64735,64742,64744-64746,64756-64761,64767-64769,64771-64772,64774-64775,64788,64793,64835-64836 via svnmerge from by Georg Brandl · 16 years ago
  48. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  49. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  50. 77250f4 Added fast alternate io.BytesIO implementation and its test suite. by Alexandre Vassalotti · 16 years ago
  51. ada8c3b Merged revisions 61520,61523-61528,61532 via svnmerge from by Christian Heimes · 16 years ago
  52. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  53. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  54. 1ff9910 Issue1395: Universal mode used to duplicate newlines when using read(1). by Amaury Forgeot d'Arc · 17 years ago
  55. 8e42a0a Fixed bug #1081: file.seek allows float arguments by Christian Heimes · 17 years ago
  56. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  57. 0b48954 Fixed bug in _fileio.c and test_pep277. On Windows IOError.filename was not set because the name is stored in widename. by Christian Heimes · 17 years ago
  58. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  59. 57233cb Patch 1330 by Christian Heimes (with some TLC applied by myself). by Guido van Rossum · 17 years ago
  60. eb08df2 Remove a bogus comment based on the code above. by Neal Norwitz · 17 years ago
  61. 88b44da Cleanup a little. by Neal Norwitz · 17 years ago
  62. 3c8ba93 Py_ssize_t requires "n" format, this fixes most of the 64-bit only failures. by Neal Norwitz · 17 years ago
  63. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  64. fdeee3a Second part of sf# 1752225: On windows, emulate ftruncate with Win32 by Thomas Heller · 17 years ago
  65. af2be26 First part of sf# 1752225: Support for wide filenames on Windows. by Thomas Heller · 17 years ago
  66. c6a55ee See SF# 1751801: Windows: Add the _fileio builtin module, and undefine by Thomas Heller · 17 years ago
  67. 7165cb1 Made test_file pass. This meant adding support for read(-1) and read() by Guido van Rossum · 17 years ago
  68. c43e79f Fix a buch of shallow test failures. by Guido van Rossum · 17 years ago
  69. 0e41148 Use O_APPEND flag instead of seeking, when append mode is specified. by Walter Dörwald · 17 years ago
  70. 3a77c7a If append mode is specified seek to the end of the file. by Walter Dörwald · 17 years ago
  71. c2f93dc Remove native popen() and fdopen(), replacing them with subprocess calls. by Guido van Rossum · 17 years ago
  72. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  73. dc0b1a1 Make a few more tests pass with the new I/O library. by Guido van Rossum · 17 years ago
  74. 8742977 truncate() returns the new size and position. by Guido van Rossum · 17 years ago
  75. 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 17 years ago
  76. b042815 Make it possible to instantiate a _FileIO() with an integer file descriptor by Guido van Rossum · 17 years ago
  77. af33438 Add a missing forward declaration for PyFileIO_Type. The _fileio module now compiles with --with-pydebug. by Collin Winter · 17 years ago
  78. a9e2024 Check in Daniel Stutzbach's _fileio.c and test_fileio.py by Guido van Rossum · 17 years ago