- dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 17 years ago
- 593daf5 Renamed PyString to PyBytes by Christian Heimes · 17 years ago
- 588ff93 Crashers of the day: Py_CLEAR must be used when there is a chance that the by Amaury Forgeot d'Arc · 17 years ago
- e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
- 95d9494 Fix compilation warning. by Georg Brandl · 17 years ago
- 9616444 Revert the fix for #1548891, it broke backwards compatibility with arbitrary read buffers. by Georg Brandl · 17 years ago
- 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 18 years ago
- 17b8e97 Merge change 54909 from release25-maint: Fix several minor issues discovered using code analysis in VisualStudio 2005 Team Edition by Kristján Valur Jónsson · 18 years ago
- cffcc8b Make cStringIO.truncate raise IOError for negative by Martin v. Löwis · 18 years ago
- 79665b1 newIobject(): repaired incorrect cast to quiet MSVC warning. by Tim Peters · 18 years ago
- 5597e26 Bug #1548891: The cStringIO.StringIO() constructor now encodes unicode by Georg Brandl · 18 years ago
- d37ac69 Remove unnecessary casts from type object initializers. by Georg Brandl · 19 years ago
- 197e832 SF patch #1359365: cStringIO.StringIO.isatty() will raise a ValueError by Walter Dörwald · 19 years ago
- 4af5c8c SF #1444030: Fix several potential defects found by Coverity. by Hye-Shik Chang · 19 years ago
- 5df2e61 Remove UNLESS. by Martin v. Löwis · 19 years ago
- f86d1e8 Silence gcc (4.0.x) warning about use of uninitialized value. by Thomas Wouters · 19 years ago
- ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 19 years ago
- 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
- 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- 10402a3 Patches #1298449 and #1298499: Add some missing checks for error by Michael W. Hudson · 19 years ago
- 037b3ee Patch 1012740: cStringIO's truncate doesn't by Tim Peters · 20 years ago
- e7c0532 sizeof(char) is 1, by definition, so get rid of that expression in by Tim Peters · 21 years ago
- 6ec0996 SF patch #907403: Improvements to cStringIO.writelines() by Raymond Hettinger · 21 years ago
- bc72c5a Speed-up the joiner call by avoiding Py_BuildValue(). by Raymond Hettinger · 21 years ago
- 8ae4689 Simplify and speedup uses of Py_BuildValue(): by Raymond Hettinger · 21 years ago
- eb2f061 reverting to 2.41 version (distinct tp_names) - will add verbiage to the docs by Skip Montanaro · 21 years ago
- e138828 shit - just change the visible name, not the comments - strictly speaking, by Skip Montanaro · 21 years ago
- 4a0d3d2 typos by Skip Montanaro · 21 years ago
- 5475f23 SF bug #770485: cStringIO does not set closed attr by Raymond Hettinger · 21 years ago
- 352f947 SF patch 695710: fix bug 678519: cStringIO self iterator by Raymond Hettinger · 22 years ago
- 36cd2bf SF patch 660559: Use METH_O and METH_NOARGS where possible by Raymond Hettinger · 22 years ago
- 674deb2 SF bug 601775 - some int results that should be bool. by Guido van Rossum · 22 years ago
- fe51c6d Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype by Mark Hammond · 23 years ago
- 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 23 years ago
- a883a3d See discussion at SF bug 547537. by Guido van Rossum · 23 years ago
- 2e1c09c Removed old Digital Creations copyright/license notices (with by Guido van Rossum · 23 years ago
- b189b07 Fix SF bug #526518 by Jeremy Hylton · 23 years ago
- 1464839 Patch supplied by Burton Radons for his own SF bug #487390: Modifying by Guido van Rossum · 23 years ago
- 2f09812 O_cwrite(): rewrote for clarity, replacing all the (Oobject *)self by Guido van Rossum · 23 years ago
- e47df7a StringIO patch #462596: let's [c]StringIO accept read buffers on by Marc-André Lemburg · 23 years ago
- 3e8be72 I_getiter(): Function for the tp_iter slot of Itype so that by Barry Warsaw · 23 years ago
- cafd495 In O_writelines: Replace use of string.joinfields with "".join. by Jeremy Hylton · 24 years ago
- e60de4d Added a new "base" type, IOobject for which most of the by Jim Fulton · 24 years ago
- c912a3a Implement readlines function. Closes Bug #110686. by Martin v. Löwis · 24 years ago
- e365fb8 Use METH_VARARGS instead of numeric constant 1 in method def. tables by Andrew M. Kuchling · 25 years ago
- 58d0510 ANSIfy some more forward declarations. by Thomas Wouters · 25 years ago
- 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 25 years ago
- 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 25 years ago
- aef1000 Fixed docstring typo, reported by Skip Montanaro <skip@mojam.com>. by Fred Drake · 25 years ago
- b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 25 years ago
- 127b2ef raise TypeError when bad argument passed to cStringIO.StringIO by Jeremy Hylton · 25 years ago
- 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 25 years ago
- 17d53ec New version from Jim: don't call Py_FatalError() when initialization fails. by Guido van Rossum · 26 years ago
- 68de064 The writelines() function was never tested and contained numerous bugs by Guido van Rossum · 26 years ago
- 476e49f Jim Fulton writes: by Guido van Rossum · 26 years ago
- 3886bb6 Add DL_EXPORT() to all modules that could possibly be used on BeOS or Windows. by Guido van Rossum · 26 years ago
- 7d9b413 New version from Jim Fulton: by Guido van Rossum · 26 years ago
- 2a502d8 Use 'S' format character for the optional constructor argument, so we by Guido van Rossum · 27 years ago
- 7589b71 I_getattr(), by Fred Drake · 27 years ago
- 10032eb Module docstring indicated seek() isn't implemented, but it is. by Fred Drake · 27 years ago
- fdde96c New versions of cPickle and cStringIO, from Jim Fulton's cPickle 1.0b1 by Guido van Rossum · 27 years ago
- 9efe8ef #Plug small memory leaks in constructors. by Guido van Rossum · 27 years ago
- 15a4039 Fix the bug Jeremy was experiencing: both the close() and the by Guido van Rossum · 27 years ago
- 142eeb8 cPickle release 0.3 from Jim Fulton by Guido van Rossum · 27 years ago
- 3dc35b0 My own patch: support writable 'softspace' attribute. by Guido van Rossum · 28 years ago
- 154417e Unknown changes by Jim Fulton. by Guido van Rossum · 28 years ago
- 61a63e1 Quieted gcc -Wall by removing unused local variables. by Barry Warsaw · 28 years ago
- 55702f8 Jim's latest version. by Guido van Rossum · 28 years ago
- 049cd90 Jim F's brainchild by Guido van Rossum · 28 years ago