1. 7ce3694 repr's converted to using PyString_FromFormat() instead of sprintf'ing by Barry Warsaw · 23 years ago
  2. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  3. 29206bc Apply anonymous SF patch #441229. by Guido van Rossum · 23 years ago
  4. 63e0a64 Remove spurious "closed" attribute definition from the memberlist by Guido van Rossum · 23 years ago
  5. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  6. 1bc8fab Kill more warnings from the SGI compiler. Part of SF patch #434992. by Fred Drake · 23 years ago
  7. 5b02184 file_getiter(): make iter(file) be equivalent to file.xreadlines(). by Guido van Rossum · 23 years ago
  8. 213c7a6 Mondo changes to the iterator stuff, without changing how Python code by Guido van Rossum · 23 years ago
  9. 6596725 Oops, forgot to merge this from the iter-branch to the trunk. by Guido van Rossum · 23 years ago
  10. f68d8e5 Make some private symbols static. by Guido van Rossum · 23 years ago
  11. 4f53da0 Two improvements to large file support: by Guido van Rossum · 23 years ago
  12. 60f42b5 Move distributed and duplicated config for stat() and fstat() into pyport.h. by Tim Peters · 24 years ago
  13. e54e0be Rationalizing the fallback code for portable fseek -- this is all much by Guido van Rossum · 24 years ago
  14. 142297a Speed getline_via_fgets(), by supplying two "fast paths", although one is by Tim Peters · 24 years ago
  15. f29b64d Use the "MS" getline hack (fgets()) by default on non-get_unlocked by Tim Peters · 24 years ago
  16. e07d5cf Jeff Epler's patch adding an xreadlines() method. (It just imports by Guido van Rossum · 24 years ago
  17. dcf5715 Tsk, tsk, tsk. Treat FreeBSD the same as the other BSDs when defining by Guido van Rossum · 24 years ago
  18. 1c73323 A few reformats; no logic changes. by Tim Peters · 24 years ago
  19. 8628206 Let's hope that three time's a charm... by Guido van Rossum · 24 years ago
  20. 15b8385 Fiddled ms_getline_hack after talking w/ Guido: made clearer that the by Tim Peters · 24 years ago
  21. 86821b2 MS Win32 .readline() speedup, as discussed on Python-Dev. This is a tricky by Tim Peters · 24 years ago
  22. 4ddf0a0 Tim noticed that I had botched get_line_raw(). Looking again, I by Guido van Rossum · 24 years ago
  23. 1187aa4 Restructured get_line() for clarity and speed. by Guido van Rossum · 24 years ago
  24. e7e190e Make the indentation consistently use tabs instead of using spaces just by Fred Drake · 24 years ago
  25. 932af11 Patch #102868 from cgw: fix memory leak when an EOF is encountered by Andrew M. Kuchling · 24 years ago
  26. 1221e6d Only use getline() when compiling using glibc by Andrew M. Kuchling · 24 years ago
  27. 4b2b445 Patch #102469: Use glibc's getline() extension when reading unbounded lines by Andrew M. Kuchling · 24 years ago
  28. ecaa777 Added _HAVE_BSDI and __APPLE__ to the list of platforms that require a by Guido van Rossum · 24 years ago
  29. 661ea26 Ka-Ping Yee <ping@lfw.org>: by Fred Drake · 24 years ago
  30. db810ac Donn Cave <donn@oz.net>: Fix large file support for BeOS. by Fred Drake · 24 years ago
  31. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  32. 1a5e583 Untested patch by Ty Sarna to make TELL64 work on older NetBSD systems. by Guido van Rossum · 24 years ago
  33. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  34. 8ce159a Peter Schneider-Kamp <nowonder@nowonder.de>: by Fred Drake · 24 years ago
  35. f5e96fa Fixed a serious typo. by Marc-André Lemburg · 24 years ago
  36. 6ef68b5 Fix to bug [ Bug #111860 ] file.writelines() crashes. by Marc-André Lemburg · 24 years ago
  37. e979160 Added include for limits.h by Jack Jansen · 24 years ago
  38. f29f47b Add largefile support for Linux64 and WIn64. Add test_largefile and some minor by Trent Mick · 24 years ago
  39. 06051ed Added PyObject_AsFileDescriptor, which checks for integer, long integer, by Andrew M. Kuchling · 24 years ago
  40. fd99de6 ANSI-fication of the sources. by Fred Drake · 24 years ago
  41. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  42. 1f46860 Fix to bug #389: by Marc-André Lemburg · 24 years ago
  43. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  44. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  45. a44d353 Trent Mick <trentm@activestate.com>: by Fred Drake · 24 years ago
  46. eceebb8 Jack Jansen: Moved includes to the top, removed think C support by Guido van Rossum · 24 years ago
  47. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  48. ee70ad1 Checking in the new, improve file.writelines() code. by Guido van Rossum · 24 years ago
  49. 4c08d55 Many changes for Unicode, by Marc-Andre Lemburg. by Guido van Rossum · 24 years ago
  50. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 24 years ago
  51. ff7e83d Patch by Mark Hammond to avoid certain header files on Windows/CE. by Guido van Rossum · 25 years ago
  52. ff1ccbf casts for picky compilers. by Guido van Rossum · 25 years ago
  53. 3c25904 Jim Ahlstrom patch: BIGCHUNK is too large for 16-bit int. by Guido van Rossum · 26 years ago
  54. 4149843 Need to include <sys/types.h> for off_t. by Guido van Rossum · 26 years ago
  55. 3c9fe0c Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  56. 8830319 Fix two places (seek and truncate) where a cascade of PyArg_Parse by Guido van Rossum · 26 years ago
  57. cada293 As noted by Per Cederqvist, new_buffersize() sometimes returns the by Guido van Rossum · 26 years ago
  58. 52ddc0e PyFile_FromString(): If an exception occurs, pass in the filename that by Barry Warsaw · 26 years ago
  59. 91aaa92 Ugly band-aid to work around a bug in Linux ftell(). by Guido van Rossum · 26 years ago
  60. f2044e1 Enable ftruncate() on the Mac. (Jack) by Guido van Rossum · 26 years ago
  61. d30dc0a Clear the error condition set by ftell(). by Guido van Rossum · 26 years ago
  62. 1109fbc Make new gcc -Wall happy by Guido van Rossum · 26 years ago
  63. 240c35a Subtle fix in the read() code which could cause a read broken up in by Guido van Rossum · 26 years ago
  64. f8b4de0 When we have no setvbuf(), make the file totally unbuffered using by Guido van Rossum · 26 years ago
  65. dcb5e7f Of course, I shouldn't have used lseek() to find out the file's by Guido van Rossum · 26 years ago
  66. 3da3fce Check ferror(), not errno, for fread() error. by Guido van Rossum · 26 years ago
  67. f518154 Fix problem discovered by Barry: if you hit ^C to by Guido van Rossum · 27 years ago
  68. 36f8e2d Use lseek instead of ftell; compensate by adding BUFSIZE by Guido van Rossum · 27 years ago
  69. 74ba247 Reordered list of methods to hopefully put the most frequently used by Guido van Rossum · 27 years ago
  70. 27a60b1 PyFile_WriteString now returns an error indicator instead of calling by Guido van Rossum · 27 years ago
  71. e9eec54 Fix typo in error checking spotted by Just... by Guido van Rossum · 27 years ago
  72. 789a161 Add optional 'sizehint' argument to readlines(). After approximately by Guido van Rossum · 27 years ago
  73. 6263d54 Rewrite readlines() to speed it up -- about a factor of 2 on my by Guido van Rossum · 27 years ago
  74. 5449b6e Speed up read() (i.e. read till EOF) considerably by doing a stat() to by Guido van Rossum · 27 years ago
  75. b819914 Fix by Mark Hammond to enable truncate() on Windows. by Guido van Rossum · 27 years ago
  76. fdf95dd Checkin of Jack's buffer mods. by Guido van Rossum · 27 years ago
  77. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  78. 685a38e Make gcc -Wall happy. by Guido van Rossum · 28 years ago
  79. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  80. d3f9a1a fix read(0), readline(0); make tuple for call_object args by Guido van Rossum · 29 years ago
  81. e08dea19 MW does not always set errno on failing fopen() by Jack Jansen · 29 years ago
  82. 295d171 explicitly init flags in methodlists by Guido van Rossum · 29 years ago
  83. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  84. d7047b3 Lots of minor changes. Note for mappingobject.c: the hash table pointer by Guido van Rossum · 30 years ago
  85. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  86. c600411 * mpzmodule.c: removed redundant mpz_print function. by Guido van Rossum · 31 years ago
  87. 82d410e * fileobject.c (softspace): fix bug if called with NULL file. by Guido van Rossum · 31 years ago
  88. 5a2a683 * filemodule.c: added writelines() -- analogous to readlines() by Guido van Rossum · 31 years ago
  89. db3165e * bltinmodule.c: removed exec() built-in function. by Guido van Rossum · 31 years ago
  90. f1dc566 * Makefile: added all: and default: targets. by Guido van Rossum · 31 years ago
  91. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  92. 34679b7 * Added Fixcprt.py: script to fix copyright message. by Guido van Rossum · 31 years ago
  93. 0b0db8e Added separate main program for the Mac: macmain.c by Guido van Rossum · 32 years ago
  94. e35399e Checking in last-minute changes that are already part of release 0.9.8 by Guido van Rossum · 32 years ago
  95. de788b8 fileobject.c: fix nasty bug; Makefile; turn on STROP and change lint flags. by Guido van Rossum · 32 years ago
  96. 3165fe6 Modified most (but not yet all) I/O to always go through sys.stdout or by Guido van Rossum · 32 years ago
  97. 7066dd7 * Makefile: added IMGFILE; moved some stuff around. by Guido van Rossum · 32 years ago
  98. ff4949e * Makefile: cosmetics by Guido van Rossum · 32 years ago
  99. 1984f1e * Makefile adapted to changes below. by Guido van Rossum · 32 years ago
  100. c10aa77 fileobject.c: fix fatal bug in getline() (forgot to initialize fp now) by Guido van Rossum · 32 years ago