1. a1392d5 Merge change 54982 from the trunk. This fixes the test_subprocess test in the testsuite for VisualStudio2005 builds, by "sanitizing" the "mode" that is used in the posixmodule's fdopen(). In particular the non-standard "U" mode character is removed. by Kristján Valur Jónsson · 17 years ago
  2. e471317 Backport trunk revision 53527: by Thomas Wouters · 18 years ago
  3. 4b63c21 Forward-port of r52136: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  4. fe50f8e Backport 51669: Make sure memory is properly cleaned up in file_init (even though this should not be able to happen since we already parsed the args) by Neal Norwitz · 18 years ago
  5. 47f0ffa Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev by Neal Norwitz · 18 years ago
  6. b337bb5 Stop INCREFing name, then checking if it's NULL. name (f_name) should never by Neal Norwitz · 18 years ago
  7. fc28e0d Handle a NULL name properly. by Neal Norwitz · 18 years ago
  8. 74c3ea0 Fix build problems with the platform SDK on windows. It is not sufficient to test for the C compiler version when determining if we have the secure CRT from microsoft. Must test with an undocumented macro, __STDC_SECURE_LIB__ too. by Kristján Valur Jónsson · 18 years ago
  9. f608317 Fix the CRT argument error handling for VisualStudio .NET 2005. Install a CRT error handler and disable the assertion for debug builds. This causes CRT to set errno to EINVAL. by Kristján Valur Jónsson · 18 years ago
  10. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 18 years ago
  11. 98b40ad Bug #1502805: don't alias file.__exit__ to file.close since the by Georg Brandl · 18 years ago
  12. 7b90e16 Bug #1462152: file() now checks more thoroughly for invalid mode by Georg Brandl · 18 years ago
  13. da5b701 Get rid of __context__, per the latest changes to PEP 343 and python-dev by Guido van Rossum · 18 years ago
  14. c4edb0e SF #1479181: split open() and file() from being aliases for each other. by Neal Norwitz · 18 years ago
  15. 2a19074 Replace INT_MAX with PY_SSIZE_T_MAX where string length are concerned. by Martin v. Löwis · 18 years ago
  16. ac6bd46 spread the extern "C" { } magic pixie dust around. Python itself builds now by Anthony Baxter · 18 years ago
  17. 377be11 More C++-compliance. Note especially listobject.c - to get C++ to accept the by Anthony Baxter · 18 years ago
  18. ed02eb6 Bug #1177964: make file iterator raise MemoryError on too big files by Georg Brandl · 18 years ago
  19. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 18 years ago
  20. f669436 Um, I thought I'd already checked this in. by Guido van Rossum · 18 years ago
  21. 1a5e21e Updates to the with-statement: by Guido van Rossum · 18 years ago
  22. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  23. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  24. c45251a SF patch #1397960: When mixing file-iteration and by Thomas Wouters · 18 years ago
  25. 76dc081 strlen() returns a size_t, get rid of 64-bit warning by Neal Norwitz · 19 years ago
  26. a716eab Revert r41662 and the part of 41552 that originally caused the problem by Neal Norwitz · 19 years ago
  27. e237d50 Add a workaround for file.ftell() to raise IOError for ttys. by Hye-Shik Chang · 19 years ago
  28. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  29. bbf12ba Disallow opening files with modes 'aU' or 'wU' as specified by PEP by Skip Montanaro · 19 years ago
  30. f8e74b1 If close() fails in file_dealloc, then print an error message to by Peter Astrand · 20 years ago
  31. 51ffac6 dump HAVE_FOPENRF stuff - obsolete by Skip Montanaro · 20 years ago
  32. cb87bc8 Add weakref support to array.array and file objects. by Raymond Hettinger · 20 years ago
  33. 4e10ed3 If a file is opened with an explicit buffer size >= 1, repeated by Andrew MacIntyre · 20 years ago
  34. abce8a6 Changed file.name to be the object passed as the 'name' argument to file() by Nicholas Bastin · 20 years ago
  35. 086a0f7 PyFile_WriteObject(): some of the local variables are only used when by Fred Drake · 20 years ago
  36. db60805 Remove support for --without-universal-newlines (see PEP 11). by Skip Montanaro · 20 years ago
  37. 4bae2d5 Getting rid of code dependent on GUSI or the MetroWerks compiler. by Jack Jansen · 21 years ago
  38. 849a972 Patch #809535: Mention behaviour of seek on text files. Backported to 2.3. by Martin v. Löwis · 21 years ago
  39. 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
  40. 7bbcde7 Only release buffer after file has been closed. Fixes #800824. by Martin v. Löwis · 21 years ago
  41. f1827cf SF bug 801631: file.truncate fault on windows. by Tim Peters · 21 years ago
  42. 1e3bdf6 Patch #788249: Pass an explicit buffer to setvbuf in PyFile_SetBufSize(). by Martin v. Löwis · 21 years ago
  43. 98cad48 Fix SF #789402, Memory leak on open() by Neal Norwitz · 21 years ago
  44. 415da6e Only encode Unicode objects when printing them raw. by Martin v. Löwis · 21 years ago
  45. 5467d4c Patch #612627: Add encoding attribute to file objects, and determine by Martin v. Löwis · 21 years ago
  46. 015dd82 Somewhere along the way, the softspace attr of file objects became read- by Tim Peters · 21 years ago
  47. cb3319f SF patch #683187, fix universal newline problems on error by Neal Norwitz · 21 years ago
  48. af6a27a Allow PyFile_GetLine() to return Unicode objects. Fixes #660165. by Martin v. Löwis · 22 years ago
  49. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
  50. a080be8 * Objects/fileobject.c by Gustavo Niemeyer · 22 years ago
  51. 786ddb2 Fixed bug by Gustavo Niemeyer · 22 years ago
  52. 6233c9b Patch #650834: Document 'U' in file mode, remove stale variables. by Martin v. Löwis · 22 years ago
  53. 0073f2e Fix --disable-unicode compilation problems. by Martin v. Löwis · 22 years ago
  54. c2e85bd Patch 594001: PEP 277 - Unicode file name support for Windows NT. by Mark Hammond · 22 years ago
  55. 8b73542 Reflow long lines. by Jeremy Hylton · 22 years ago
  56. d8b995f Make readahead functions static by Neal Norwitz · 22 years ago
  57. 7a6e959 SF patch 580331 by Oren Tirosh: make file objects their own iterator. by Guido van Rossum · 22 years ago
  58. 7a1f917 WINDOWS_LEAN_AND_MEAN: There is no such symbol, although a very few by Tim Peters · 22 years ago
  59. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  60. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  61. 4be55b5 file_doc: Add some description of the U mode character, but only when by Barry Warsaw · 22 years ago
  62. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 22 years ago
  63. e1682a8 Py_UniversalNewlineFread(): small speed boost on non-Windows boxes. by Tim Peters · 22 years ago
  64. 058b141 Py_UniversalNewlineFread(): Many changes. by Tim Peters · 22 years ago
  65. 7b8c754 Mass checkin of universal newline support. by Jack Jansen · 22 years ago
  66. aa769ae PyObject_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  67. 2ea9111 SF bug 538827: Python open w/ MSVC6: bad error msgs. by Tim Peters · 22 years ago
  68. 7f7666f isatty() should return a bool. by Guido van Rossum · 22 years ago
  69. 77f6a65 Add the 'bool' type and its values 'False' and 'True', as described in by Guido van Rossum · 22 years ago
  70. 62f5a9d Convert file.readinto() to stop using METH_OLDARGS & PyArg_Parse. by Neal Norwitz · 22 years ago
  71. 3a204a7 Grow the string buffer at a mildly exponential rate for the getc version by Neil Schemenauer · 22 years ago
  72. ddea208 Give Python a debug-mode pymalloc, much as sketched on Python-Dev. by Tim Peters · 22 years ago
  73. ed19b88 Check in (hopefully) corrected version of last change. by Neil Schemenauer · 22 years ago
  74. 12a6d94 Undo last commit. It's causing the tests to file. by Neil Schemenauer · 22 years ago
  75. 398b9f6 Disallow open()ing of directories. Closes SF bug 487277. by Neil Schemenauer · 22 years ago
  76. f6eebbb Patch #530105: Allow file object may to be subtyped by Martin v. Löwis · 22 years ago
  77. 8f01b68 Change Windows file.truncate() to (a) restore the original file position, by Tim Peters · 22 years ago
  78. fb05db2 file_truncate(): provide full "large file" support on Windows, by by Tim Peters · 22 years ago
  79. c487439 OS/2 EMX port changes (Objects part of patch #450267): by Andrew MacIntyre · 22 years ago
  80. cdc4451 Include <unistd.h> in Python.h. Fixes #500924. by Martin v. Löwis · 23 years ago
  81. 649b759 SF Patch #494863, file.xreadlines() should raise ValueError if file is closed by Neal Norwitz · 23 years ago
  82. b3be216 Merged changes made on r22b2-branch between r22b2 and r22b2-mac (the by Jack Jansen · 23 years ago
  83. c1bbcb8 PyFile_WriteString(): change prototype so that the string arg is by Tim Peters · 23 years ago
  84. a27a150 open_the_file(): Explicitly set errno to 0 before calling fopen(). by Tim Peters · 23 years ago
  85. 1144867 open_the_file(): this routine has a borrowed reference to the file by Tim Peters · 23 years ago
  86. 41c8321 Fix SF buf #476953: Bad more for opening file gives bad msg. by Jeremy Hylton · 23 years ago
  87. e2ec3eb fix for by Michael W. Hudson · 23 years ago
  88. 00ebd46 SF patch #474175 (Jay T Miller): file.readinto arg parsing bug by Guido van Rossum · 23 years ago
  89. 79fd0fc Band-aid solution to SF bug #470634: readlines() on linux requires 2 ^D's. by Guido van Rossum · 23 years ago
  90. 2771b5b Rather gross workaround for a bug in the mac GUSI I/O library: by Jack Jansen · 23 years ago
  91. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  92. 2c9aa5e Generalize file.writelines() to allow iterable objects. by Tim Peters · 23 years ago
  93. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  94. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  95. efc3a3a SF bug [#463093] File methods need doc strings. Now they don't. by Tim Peters · 23 years ago
  96. 2777c02 Patch #462849: Pass Unicode objects to file's .write method. by Martin v. Löwis · 23 years ago
  97. 4441001 The end of [#460467] file objects should be subclassable. by Tim Peters · 23 years ago
  98. 742dfd6 Get rid of builtin_open() entirely (the C code and docstring, not the by Tim Peters · 23 years ago
  99. 8fa4567 Now that file objects are subclassable, you can get at the file constructor by Tim Peters · 23 years ago
  100. 59c9a64 SF bug [#460467] file objects should be subclassable. by Tim Peters · 23 years ago