1. ee70ad1 Checking in the new, improve file.writelines() code. by Guido van Rossum · 24 years ago
  2. 4c08d55 Many changes for Unicode, by Marc-Andre Lemburg. by Guido van Rossum · 24 years ago
  3. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 24 years ago
  4. ff7e83d Patch by Mark Hammond to avoid certain header files on Windows/CE. by Guido van Rossum · 25 years ago
  5. ff1ccbf casts for picky compilers. by Guido van Rossum · 25 years ago
  6. 3c25904 Jim Ahlstrom patch: BIGCHUNK is too large for 16-bit int. by Guido van Rossum · 26 years ago
  7. 4149843 Need to include <sys/types.h> for off_t. by Guido van Rossum · 26 years ago
  8. 3c9fe0c Changes for long file support by Steve Clift. by Guido van Rossum · 26 years ago
  9. 8830319 Fix two places (seek and truncate) where a cascade of PyArg_Parse by Guido van Rossum · 26 years ago
  10. cada293 As noted by Per Cederqvist, new_buffersize() sometimes returns the by Guido van Rossum · 26 years ago
  11. 52ddc0e PyFile_FromString(): If an exception occurs, pass in the filename that by Barry Warsaw · 26 years ago
  12. 91aaa92 Ugly band-aid to work around a bug in Linux ftell(). by Guido van Rossum · 26 years ago
  13. f2044e1 Enable ftruncate() on the Mac. (Jack) by Guido van Rossum · 26 years ago
  14. d30dc0a Clear the error condition set by ftell(). by Guido van Rossum · 26 years ago
  15. 1109fbc Make new gcc -Wall happy by Guido van Rossum · 26 years ago
  16. 240c35a Subtle fix in the read() code which could cause a read broken up in by Guido van Rossum · 26 years ago
  17. f8b4de0 When we have no setvbuf(), make the file totally unbuffered using by Guido van Rossum · 26 years ago
  18. dcb5e7f Of course, I shouldn't have used lseek() to find out the file's by Guido van Rossum · 26 years ago
  19. 3da3fce Check ferror(), not errno, for fread() error. by Guido van Rossum · 26 years ago
  20. f518154 Fix problem discovered by Barry: if you hit ^C to by Guido van Rossum · 27 years ago
  21. 36f8e2d Use lseek instead of ftell; compensate by adding BUFSIZE by Guido van Rossum · 27 years ago
  22. 74ba247 Reordered list of methods to hopefully put the most frequently used by Guido van Rossum · 27 years ago
  23. 27a60b1 PyFile_WriteString now returns an error indicator instead of calling by Guido van Rossum · 27 years ago
  24. e9eec54 Fix typo in error checking spotted by Just... by Guido van Rossum · 27 years ago
  25. 789a161 Add optional 'sizehint' argument to readlines(). After approximately by Guido van Rossum · 27 years ago
  26. 6263d54 Rewrite readlines() to speed it up -- about a factor of 2 on my by Guido van Rossum · 27 years ago
  27. 5449b6e Speed up read() (i.e. read till EOF) considerably by doing a stat() to by Guido van Rossum · 27 years ago
  28. b819914 Fix by Mark Hammond to enable truncate() on Windows. by Guido van Rossum · 27 years ago
  29. fdf95dd Checkin of Jack's buffer mods. by Guido van Rossum · 27 years ago
  30. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  31. 685a38e Make gcc -Wall happy. by Guido van Rossum · 28 years ago
  32. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  33. d3f9a1a fix read(0), readline(0); make tuple for call_object args by Guido van Rossum · 29 years ago
  34. e08dea19 MW does not always set errno on failing fopen() by Jack Jansen · 29 years ago
  35. 295d171 explicitly init flags in methodlists by Guido van Rossum · 29 years ago
  36. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  37. d7047b3 Lots of minor changes. Note for mappingobject.c: the hash table pointer by Guido van Rossum · 30 years ago
  38. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  39. c600411 * mpzmodule.c: removed redundant mpz_print function. by Guido van Rossum · 31 years ago
  40. 82d410e * fileobject.c (softspace): fix bug if called with NULL file. by Guido van Rossum · 31 years ago
  41. 5a2a683 * filemodule.c: added writelines() -- analogous to readlines() by Guido van Rossum · 31 years ago
  42. db3165e * bltinmodule.c: removed exec() built-in function. by Guido van Rossum · 31 years ago
  43. f1dc566 * Makefile: added all: and default: targets. by Guido van Rossum · 31 years ago
  44. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  45. 34679b7 * Added Fixcprt.py: script to fix copyright message. by Guido van Rossum · 32 years ago
  46. 0b0db8e Added separate main program for the Mac: macmain.c by Guido van Rossum · 32 years ago
  47. e35399e Checking in last-minute changes that are already part of release 0.9.8 by Guido van Rossum · 32 years ago
  48. de788b8 fileobject.c: fix nasty bug; Makefile; turn on STROP and change lint flags. by Guido van Rossum · 32 years ago
  49. 3165fe6 Modified most (but not yet all) I/O to always go through sys.stdout or by Guido van Rossum · 32 years ago
  50. 7066dd7 * Makefile: added IMGFILE; moved some stuff around. by Guido van Rossum · 32 years ago
  51. ff4949e * Makefile: cosmetics by Guido van Rossum · 32 years ago
  52. 1984f1e * Makefile adapted to changes below. by Guido van Rossum · 32 years ago
  53. c10aa77 fileobject.c: fix fatal bug in getline() (forgot to initialize fp now) by Guido van Rossum · 32 years ago
  54. d7297e6 Makefile: added instann rules and $(*DEST*) defines. by Guido van Rossum · 32 years ago
  55. ed233a5 Changes for new UNIX-specific built-in module 'select' and new header for by Guido van Rossum · 32 years ago
  56. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  57. 51415a7 Quiet lint by Guido van Rossum · 32 years ago
  58. febd551 Change error handling. Call clearerr() more often. by Guido van Rossum · 32 years ago
  59. fa3da8a Include modsupport.h for getargs(). by Guido van Rossum · 33 years ago
  60. 201be05 Added message to EOFError. by Guido van Rossum · 33 years ago
  61. 87e7ea7 Use new exceptions. by Guido van Rossum · 33 years ago
  62. 8aff84a Call write(fileno(fp), ...) instead of fwrite for LARGE writes. by Guido van Rossum · 33 years ago
  63. 18a372f getlonglongargs --> getlonglongarg by Guido van Rossum · 33 years ago
  64. 9093361 printobject now returns an error code by Guido van Rossum · 33 years ago
  65. a1ab7fa In support of popen(), file objects are now parametrized with a close by Guido van Rossum · 33 years ago
  66. 76ad8ed Call clearerr() after EOF seen. by Guido van Rossum · 33 years ago
  67. 0bd2441 Added external interface to readline, for raw_input(). by Guido van Rossum · 33 years ago
  68. eb183da Added 'softspace' interface to replace 'needspace' printing hack. by Guido van Rossum · 33 years ago
  69. ce5ba84 Fixed read() and readline() to do arbitrarily long reads. by Guido van Rossum · 33 years ago
  70. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  71. a08095a Hack to open resource fork on the Mac: open(filename, '*rb'). by Guido van Rossum · 33 years ago
  72. 59b3590 Think C 4.0 fixes a bug in 3.0 that we programmed around. by Guido van Rossum · 34 years ago
  73. 3f5da24 "Compiling" version by Guido van Rossum · 34 years ago
  74. dd5c7be Reads of zero should be legal! by Guido van Rossum · 34 years ago
  75. 2b654f7 New error handling in getattr(). by Guido van Rossum · 34 years ago
  76. 85a5fbb Initial revision by Guido van Rossum · 34 years ago