1. dc7c128 http://bugs.python.org/issue5544 by Kristján Valur Jónsson · 15 years ago
  2. a28fcfd Issue #5016: FileIO.seekable() could return False if the file position by Antoine Pitrou · 15 years ago
  3. 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
  4. 9a8082f FileIO.readinto() isn't going anywhere by Benjamin Peterson · 15 years ago
  5. 7fb111b Fix failures introduced by buggy merge (1) by Antoine Pitrou · 15 years ago
  6. 4fa88fa merge the io-c branch: C implementation of the io module by Benjamin Peterson · 15 years ago
  7. f91df04 Merged revisions 69364-69365,69409-69410,69413,69417,69435,69442,69447,69495,69519-69521 via svnmerge from by Benjamin Peterson · 15 years ago
  8. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  9. 08838b6 Merged revisions 68835 via svnmerge from by Antoine Pitrou · 15 years ago
  10. 4f7945f Fix typo by Antoine Pitrou · 15 years ago
  11. 7aedf11 fix compiler warning by Benjamin Peterson · 15 years ago
  12. 806d402 Merged revisions 68755 via svnmerge from by Benjamin Peterson · 15 years ago
  13. 0f22d69 Merged revisions 68134 via svnmerge from by Hirokazu Yamamoto · 16 years ago
  14. 1efc23c Merged revisions 68016 via svnmerge from by Benjamin Peterson · 16 years ago
  15. 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
  16. a872de5 Fixed issue #4533: File read operation was dreadfully slow by Christian Heimes · 16 years ago
  17. 44309e6 make FileIO.mode always include 'b' by Benjamin Peterson · 16 years ago
  18. ecc42a2 Fixed issue #4233. by Christian Heimes · 16 years ago
  19. c0747cf Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via svnmerge from by Benjamin Peterson · 16 years ago
  20. df32b39 Issue #4237: io.FileIO() was raising invalid warnings caused by insufficient initialization of PyFileIOObject struct members. by Christian Heimes · 16 years ago
  21. 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
  22. 6e0e0e6 Merged revisions 66018 via svnmerge from by Neal Norwitz · 16 years ago
  23. 2f99b24 Merged revisions 66006 via svnmerge from by Neal Norwitz · 16 years ago
  24. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  25. 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
  26. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  27. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  28. 77250f4 Added fast alternate io.BytesIO implementation and its test suite. by Alexandre Vassalotti · 16 years ago
  29. ada8c3b Merged revisions 61520,61523-61528,61532 via svnmerge from by Christian Heimes · 16 years ago
  30. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  31. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  32. 1ff9910 Issue1395: Universal mode used to duplicate newlines when using read(1). by Amaury Forgeot d'Arc · 17 years ago
  33. 8e42a0a Fixed bug #1081: file.seek allows float arguments by Christian Heimes · 17 years ago
  34. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  35. 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
  36. 2dced8b Patch 1329 (partial) by Christian Heimes. by Guido van Rossum · 17 years ago
  37. 57233cb Patch 1330 by Christian Heimes (with some TLC applied by myself). by Guido van Rossum · 17 years ago
  38. eb08df2 Remove a bogus comment based on the code above. by Neal Norwitz · 17 years ago
  39. 88b44da Cleanup a little. by Neal Norwitz · 17 years ago
  40. 3c8ba93 Py_ssize_t requires "n" format, this fixes most of the 64-bit only failures. by Neal Norwitz · 17 years ago
  41. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  42. fdeee3a Second part of sf# 1752225: On windows, emulate ftruncate with Win32 by Thomas Heller · 17 years ago
  43. af2be26 First part of sf# 1752225: Support for wide filenames on Windows. by Thomas Heller · 17 years ago
  44. c6a55ee See SF# 1751801: Windows: Add the _fileio builtin module, and undefine by Thomas Heller · 17 years ago
  45. 7165cb1 Made test_file pass. This meant adding support for read(-1) and read() by Guido van Rossum · 17 years ago
  46. c43e79f Fix a buch of shallow test failures. by Guido van Rossum · 17 years ago
  47. 0e41148 Use O_APPEND flag instead of seeking, when append mode is specified. by Walter Dörwald · 17 years ago
  48. 3a77c7a If append mode is specified seek to the end of the file. by Walter Dörwald · 17 years ago
  49. c2f93dc Remove native popen() and fdopen(), replacing them with subprocess calls. by Guido van Rossum · 17 years ago
  50. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  51. dc0b1a1 Make a few more tests pass with the new I/O library. by Guido van Rossum · 17 years ago
  52. 8742977 truncate() returns the new size and position. by Guido van Rossum · 17 years ago
  53. 53807da Implement long positioning (Unix only, probably). Etc., etc. by Guido van Rossum · 17 years ago
  54. b042815 Make it possible to instantiate a _FileIO() with an integer file descriptor by Guido van Rossum · 17 years ago
  55. af33438 Add a missing forward declaration for PyFileIO_Type. The _fileio module now compiles with --with-pydebug. by Collin Winter · 17 years ago
  56. a9e2024 Check in Daniel Stutzbach's _fileio.c and test_fileio.py by Guido van Rossum · 17 years ago