| Commit message (Expand) | Author | Age | Files | Lines |
* | repr's converted to using PyString_FromFormat() instead of sprintf'ing | Barry Warsaw | 2001-08-24 | 1 | -7/+5 |
|
|
* | Patch #427190: Implement and use METH_NOARGS and METH_O. | Martin v. Löwis | 2001-08-16 | 1 | -33/+20 |
|
|
* | Apply anonymous SF patch #441229. | Guido van Rossum | 2001-08-09 | 1 | -0/+6 |
|
|
* | Remove spurious "closed" attribute definition from the memberlist | Guido van Rossum | 2001-08-06 | 1 | -1/+0 |
|
|
* | Merge of descr-branch back into trunk. | Tim Peters | 2001-08-02 | 1 | -27/+18 |
|
|
* | Kill more warnings from the SGI compiler. | Fred Drake | 2001-07-19 | 1 | -1/+1 |
|
|
* | file_getiter(): make iter(file) be equivalent to file.xreadlines(). | Guido van Rossum | 2001-05-22 | 1 | -12/+3 |
|
|
* | Mondo changes to the iterator stuff, without changing how Python code | Guido van Rossum | 2001-04-23 | 1 | -0/+1 |
|
|
* | Oops, forgot to merge this from the iter-branch to the trunk. | Guido van Rossum | 2001-04-21 | 1 | -9/+37 |
|
|
* | Make some private symbols static. | Guido van Rossum | 2001-04-14 | 1 | -2/+2 |
|
|
* | Two improvements to large file support: | Guido van Rossum | 2001-03-01 | 1 | -30/+18 |
|
|
* | Move distributed and duplicated config for stat() and fstat() into pyport.h. | Tim Peters | 2001-01-18 | 1 | -20/+0 |
|
|
* | Rationalizing the fallback code for portable fseek -- this is all much | Guido van Rossum | 2001-01-16 | 1 | -26/+12 |
|
|
* | Speed getline_via_fgets(), by supplying two "fast paths", although one is | Tim Peters | 2001-01-15 | 1 | -54/+81 |
|
|
* | Use the "MS" getline hack (fgets()) by default on non-get_unlocked | Tim Peters | 2001-01-15 | 1 | -30/+47 |
|
|
* | Jeff Epler's patch adding an xreadlines() method. (It just imports | Guido van Rossum | 2001-01-09 | 1 | -1/+25 |
|
|
* | Tsk, tsk, tsk. Treat FreeBSD the same as the other BSDs when defining | Guido van Rossum | 2001-01-09 | 1 | -1/+1 |
|
|
* | A few reformats; no logic changes. | Tim Peters | 2001-01-08 | 1 | -9/+8 |
|
|
* | Let's hope that three time's a charm... | Guido van Rossum | 2001-01-08 | 1 | -3/+3 |
|
|
* | Fiddled ms_getline_hack after talking w/ Guido: made clearer that the | Tim Peters | 2001-01-08 | 1 | -65/+67 |
|
|
* | MS Win32 .readline() speedup, as discussed on Python-Dev. This is a tricky | Tim Peters | 2001-01-07 | 1 | -15/+184 |
|
|
* | Tim noticed that I had botched get_line_raw(). Looking again, I | Guido van Rossum | 2001-01-07 | 1 | -47/+30 |
|
|
* | Restructured get_line() for clarity and speed. | Guido van Rossum | 2001-01-05 | 1 | -66/+59 |
|
|
* | Make the indentation consistently use tabs instead of using spaces just | Fred Drake | 2000-12-20 | 1 | -3/+3 |
|
|
* | Patch #102868 from cgw: fix memory leak when an EOF is encountered | Andrew M. Kuchling | 2000-12-19 | 1 | -0/+3 |
|
|
* | Only use getline() when compiling using glibc | Andrew M. Kuchling | 2000-11-30 | 1 | -1/+1 |
|
|
* | Patch #102469: Use glibc's getline() extension when reading unbounded lines | Andrew M. Kuchling | 2000-11-29 | 1 | -3/+30 |
|
|
* | Added _HAVE_BSDI and __APPLE__ to the list of platforms that require a | Guido van Rossum | 2000-11-13 | 1 | -1/+1 |
|
|
* | Ka-Ping Yee <ping@lfw.org>: | Fred Drake | 2000-10-24 | 1 | -3/+3 |
|
|
* | Donn Cave <donn@oz.net>: | Fred Drake | 2000-10-06 | 1 | -0/+2 |
|
|
* | Rationalize use of limits.h, moving the inclusion to Python.h. | Fred Drake | 2000-09-26 | 1 | -4/+0 |
|
|
* | Untested patch by Ty Sarna to make TELL64 work on older NetBSD systems. | Guido van Rossum | 2000-09-21 | 1 | -2/+6 |
|
|
* | REMOVED all CWI, CNRI and BeOpen copyright markings. | Guido van Rossum | 2000-09-01 | 1 | -9/+0 |
|
|
* | Peter Schneider-Kamp <nowonder@nowonder.de>: | Fred Drake | 2000-08-31 | 1 | -7/+3 |
|
|
* | Fixed a serious typo. | Marc-André Lemburg | 2000-08-25 | 1 | -1/+1 |
|
|
* | Fix to bug [ Bug #111860 ] file.writelines() crashes. | Marc-André Lemburg | 2000-08-25 | 1 | -9/+34 |
|
|
* | Added include for limits.h | Jack Jansen | 2000-08-22 | 1 | -0/+4 |
|
|
* | Add largefile support for Linux64 and WIn64. Add test_largefile and some minor | Trent Mick | 2000-08-11 | 1 | -37/+145 |
|
|
* | Added PyObject_AsFileDescriptor, which checks for integer, long integer, | Andrew M. Kuchling | 2000-07-13 | 1 | -0/+58 |
|
|
* | ANSI-fication of the sources. | Fred Drake | 2000-07-09 | 1 | -85/+30 |
|
|
* | Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. | Tim Peters | 2000-07-09 | 1 | -3/+3 |
|
|
* | Fix to bug #389: | Marc-André Lemburg | 2000-07-05 | 1 | -4/+4 |
|
|
* | Change copyright notice - 2nd try. | Guido van Rossum | 2000-06-30 | 1 | -6/+0 |
|
|
* | Change copyright notice. | Guido van Rossum | 2000-06-30 | 1 | -22/+7 |
|
|
* | Trent Mick <trentm@activestate.com>: | Fred Drake | 2000-06-30 | 1 | -2/+2 |
|
|
* | Jack Jansen: Moved includes to the top, removed think C support | Guido van Rossum | 2000-06-28 | 1 | -18/+20 |
|
|
* | Vladimir Marangozov's long-awaited malloc restructuring. | Guido van Rossum | 2000-05-03 | 1 | -1/+1 |
|
|
* | Checking in the new, improve file.writelines() code. | Guido van Rossum | 2000-03-13 | 1 | -24/+78 |
|
|
* | Many changes for Unicode, by Marc-Andre Lemburg. | Guido van Rossum | 2000-03-10 | 1 | -1/+7 |
|
|
* | Massive patch by Skip Montanaro to add ":name" to as many | Guido van Rossum | 2000-02-29 | 1 | -5/+5 |
|
|