1. 4bae2d5 Getting rid of code dependent on GUSI or the MetroWerks compiler. by Jack Jansen · 21 years ago
  2. 849a972 Patch #809535: Mention behaviour of seek on text files. Backported to 2.3. by Martin v. Löwis · 21 years ago
  3. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  4. 7bbcde7 Only release buffer after file has been closed. Fixes #800824. by Martin v. Löwis · 21 years ago
  5. f1827cf SF bug 801631: file.truncate fault on windows. by Tim Peters · 21 years ago
  6. 1e3bdf6 Patch #788249: Pass an explicit buffer to setvbuf in PyFile_SetBufSize(). by Martin v. Löwis · 21 years ago
  7. 98cad48 Fix SF #789402, Memory leak on open() by Neal Norwitz · 21 years ago
  8. 415da6e Only encode Unicode objects when printing them raw. by Martin v. Löwis · 21 years ago
  9. 5467d4c Patch #612627: Add encoding attribute to file objects, and determine by Martin v. Löwis · 21 years ago
  10. 015dd82 Somewhere along the way, the softspace attr of file objects became read- by Tim Peters · 21 years ago
  11. cb3319f SF patch #683187, fix universal newline problems on error by Neal Norwitz · 21 years ago
  12. af6a27a Allow PyFile_GetLine() to return Unicode objects. Fixes #660165. by Martin v. Löwis · 22 years ago
  13. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
  14. a080be8 * Objects/fileobject.c by Gustavo Niemeyer · 22 years ago
  15. 786ddb2 Fixed bug by Gustavo Niemeyer · 22 years ago
  16. 6233c9b Patch #650834: Document 'U' in file mode, remove stale variables. by Martin v. Löwis · 22 years ago
  17. 0073f2e Fix --disable-unicode compilation problems. by Martin v. Löwis · 22 years ago
  18. c2e85bd Patch 594001: PEP 277 - Unicode file name support for Windows NT. by Mark Hammond · 22 years ago
  19. 8b73542 Reflow long lines. by Jeremy Hylton · 22 years ago
  20. d8b995f Make readahead functions static by Neal Norwitz · 22 years ago
  21. 7a6e959 SF patch 580331 by Oren Tirosh: make file objects their own iterator. by Guido van Rossum · 22 years ago
  22. 7a1f917 WINDOWS_LEAN_AND_MEAN: There is no such symbol, although a very few by Tim Peters · 22 years ago
  23. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  24. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  25. 4be55b5 file_doc: Add some description of the U mode character, but only when by Barry Warsaw · 22 years ago
  26. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 22 years ago
  27. e1682a8 Py_UniversalNewlineFread(): small speed boost on non-Windows boxes. by Tim Peters · 22 years ago
  28. 058b141 Py_UniversalNewlineFread(): Many changes. by Tim Peters · 22 years ago
  29. 7b8c754 Mass checkin of universal newline support. by Jack Jansen · 22 years ago
  30. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  31. 2ea9111 SF bug 538827: Python open w/ MSVC6: bad error msgs. by Tim Peters · 22 years ago
  32. 7f7666f isatty() should return a bool. by Guido van Rossum · 22 years ago
  33. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  34. 62f5a9d Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 22 years ago
  35. 3a204a7 Grow the string buffer at a mildly exponential rate for the getc version by Neil Schemenauer · 22 years ago
  36. ddea208 Give Python a debug-mode pymalloc, much as sketched on Python-Dev. by Tim Peters · 22 years ago
  37. ed19b88 Check in (hopefully) corrected version of last change. by Neil Schemenauer · 22 years ago
  38. 12a6d94 Undo last commit. It's causing the tests to file. by Neil Schemenauer · 22 years ago
  39. 398b9f6 Disallow open()ing of directories. Closes SF bug 487277. by Neil Schemenauer · 22 years ago
  40. f6eebbb Patch #530105: Allow file object may to be subtyped by Martin v. Löwis · 22 years ago
  41. 8f01b68 Change Windows file.truncate() to (a) restore the original file position, by Tim Peters · 22 years ago
  42. fb05db2 file_truncate(): provide full "large file" support on Windows, by by Tim Peters · 22 years ago
  43. c487439 OS/2 EMX port changes (Objects part of patch #450267): by Andrew MacIntyre · 22 years ago
  44. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  45. 649b759 SF Patch #494863, file.xreadlines() should raise ValueError if file is closed by Neal Norwitz · 23 years ago
  46. b3be216 Merged changes made on r22b2-branch between r22b2 and r22b2-mac (the by Jack Jansen · 23 years ago
  47. c1bbcb8 PyFile_WriteString(): change prototype so that the string arg is by Tim Peters · 23 years ago
  48. a27a150 open_the_file(): Explicitly set errno to 0 before calling fopen(). by Tim Peters · 23 years ago
  49. 1144867 open_the_file(): this routine has a borrowed reference to the file by Tim Peters · 23 years ago
  50. 41c8321 Fix SF buf #476953: Bad more for opening file gives bad msg. by Jeremy Hylton · 23 years ago
  51. e2ec3eb fix for by Michael W. Hudson · 23 years ago
  52. 00ebd46 SF patch #474175 (Jay T Miller): file.readinto arg parsing bug by Guido van Rossum · 23 years ago
  53. 79fd0fc Band-aid solution to SF bug #470634: readlines() on linux requires 2 ^D's. by Guido van Rossum · 23 years ago
  54. 2771b5b Rather gross workaround for a bug in the mac GUSI I/O library: by Jack Jansen · 23 years ago
  55. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  56. 2c9aa5e Generalize file.writelines() to allow iterable objects. by Tim Peters · 23 years ago
  57. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  58. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  59. efc3a3a SF bug [#463093] File methods need doc strings. Now they don't. by Tim Peters · 23 years ago
  60. 2777c02 Patch #462849: Pass Unicode objects to file's .write method. by Martin v. Löwis · 23 years ago
  61. 4441001 The end of [#460467] file objects should be subclassable. by Tim Peters · 23 years ago
  62. 742dfd6 Get rid of builtin_open() entirely (the C code and docstring, not the by Tim Peters · 23 years ago
  63. 8fa4567 Now that file objects are subclassable, you can get at the file constructor by Tim Peters · 23 years ago
  64. 59c9a64 SF bug [#460467] file objects should be subclassable. by Tim Peters · 23 years ago
  65. 8b4e43e _portable_fseek(): by Guido van Rossum · 23 years ago
  66. 6e13a56 Enable large file support on Win32 systems. by Tim Peters · 23 years ago
  67. b855216 Changes to automatically enable large file support on some systems. by Guido van Rossum · 23 years ago
  68. 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 23 years ago
  69. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  70. 29206bc Apply anonymous SF patch #441229. by Guido van Rossum · 23 years ago
  71. 63e0a64 Remove spurious "closed" attribute definition from the memberlist by Guido van Rossum · 23 years ago
  72. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  73. 1bc8fab Kill more warnings from the SGI compiler. Part of SF patch #434992. by Fred Drake · 23 years ago
  74. 5b02184 file_getiter(): make iter(file) be equivalent to file.xreadlines(). by Guido van Rossum · 23 years ago
  75. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  76. 6596725 Oops, forgot to merge this from the iter-branch to the trunk. by Guido van Rossum · 23 years ago
  77. f68d8e5 Make some private symbols static. by Guido van Rossum · 23 years ago
  78. 4f53da0 Two improvements to large file support: by Guido van Rossum · 23 years ago
  79. 60f42b5 Move distributed and duplicated config for stat() and fstat() into pyport.h. by Tim Peters · 23 years ago
  80. e54e0be Rationalizing the fallback code for portable fseek -- this is all much by Guido van Rossum · 24 years ago
  81. 142297a Speed getline_via_fgets(), by supplying two "fast paths", although one is by Tim Peters · 24 years ago
  82. f29b64d Use the "MS" getline hack (fgets()) by default on non-get_unlocked by Tim Peters · 24 years ago
  83. e07d5cf Jeff Epler's patch adding an xreadlines() method. (It just imports by Guido van Rossum · 24 years ago
  84. dcf5715 Tsk, tsk, tsk. Treat FreeBSD the same as the other BSDs when defining by Guido van Rossum · 24 years ago
  85. 1c73323 A few reformats; no logic changes. by Tim Peters · 24 years ago
  86. 8628206 Let's hope that three time's a charm... by Guido van Rossum · 24 years ago
  87. 15b8385 Fiddled ms_getline_hack after talking w/ Guido: made clearer that the by Tim Peters · 24 years ago
  88. 86821b2 MS Win32 .readline() speedup, as discussed on Python-Dev. This is a tricky by Tim Peters · 24 years ago
  89. 4ddf0a0 Tim noticed that I had botched get_line_raw(). Looking again, I by Guido van Rossum · 24 years ago
  90. 1187aa4 Restructured get_line() for clarity and speed. by Guido van Rossum · 24 years ago
  91. e7e190e Make the indentation consistently use tabs instead of using spaces just by Fred Drake · 24 years ago
  92. 932af11 Patch #102868 from cgw: fix memory leak when an EOF is encountered by Andrew M. Kuchling · 24 years ago
  93. 1221e6d Only use getline() when compiling using glibc by Andrew M. Kuchling · 24 years ago
  94. 4b2b445 Patch #102469: Use glibc's getline() extension when reading unbounded lines by Andrew M. Kuchling · 24 years ago
  95. ecaa777 Added _HAVE_BSDI and __APPLE__ to the list of platforms that require a by Guido van Rossum · 24 years ago
  96. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  97. db810ac Donn Cave <donn@oz.net>: Fix large file support for BeOS. by Fred Drake · 24 years ago
  98. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  99. 1a5e583 Untested patch by Ty Sarna to make TELL64 work on older NetBSD systems. by Guido van Rossum · 24 years ago
  100. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago