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