summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Remove the old platform-specific FCNTL.py modules; these are no longerFred Drake2001-05-0915-1993/+0
* Add a new FCNTL.py backward compatibility module that issues a deprecationFred Drake2001-05-091-0/+14
* Update the tests for the fcntl module to check passing in file objects,Fred Drake2001-05-091-11/+21
* Update the fcntl module documentation.Fred Drake2001-05-091-30/+26
* Modify to allow file objects wherever file descriptors are needed.Fred Drake2001-05-091-8/+71
* fdconv(): Do not second guess the error condition returned byFred Drake2001-05-091-37/+4
* SF patch #416247 2.1c1 stringobject: unused vrbl cleanup.Tim Peters2001-05-091-2/+0
* Itamar Shtull-Trauring <python@itamarst.org>:Fred Drake2001-05-091-4/+5
* Three uses of makesockaddr() used sockaddr buffers that had not be cleared;Fred Drake2001-05-091-1/+4
* SF patch #416249, from Mark Favas: 2.1c1 compile: unused vrbl cleanupTim Peters2001-05-091-2/+0
* Minor fiddling related toTim Peters2001-05-091-5/+2
* Update build notes for Mac OS X 10.0.Fred Drake2001-05-091-10/+10
* Only import termio.h on OSF, and add a comment about why it is needed there.Fred Drake2001-05-091-0/+4
* Fix the operator precedence table: exponentiation binds tighter thanFred Drake2001-05-091-2/+2
* Remove items that have been done or are being tracked in the SourceForgeFred Drake2001-05-091-10/+0
* Update the directory names to match changes at SourceForge.Fred Drake2001-05-092-2/+2
* Trivial tests of urllib2 for recent SF bugJeremy Hylton2001-05-092-0/+18
* Work around limitations of the module synopsis table generation to avoidFred Drake2001-05-099-9/+9
* Raise useful exception when called with URL for which request typeJeremy Hylton2001-05-091-1/+2
* Minor adjustments to HTML for the module synopsis tables.Fred Drake2001-05-091-2/+6
* Sheesh -- repair the dodge around "cast isn't an lvalue" complaints toTim Peters2001-05-091-0/+4
* Mark Favas reported that gcc caught me using casts as lvalues. Dodge it.Tim Peters2001-05-091-6/+10
* Job.build_html(): Be more robust in ensuring about.html exists; copyingFred Drake2001-05-091-17/+16
* There is no IMAP class in the imaplib module; the class is IMAP4.Fred Drake2001-05-091-9/+10
* Note that when inplace=1 existing backup files will be removed silently.Fred Drake2001-05-091-2/+5
* Always pass a full path name to LoadLibraryEx(). Fixes some Windows 9x probl...Mark Hammond2001-05-091-17/+14
* Ack! Restore the COUNT_ALLOCS one_strings code.Tim Peters2001-05-091-1/+5
* My change to string_item() left an extra reference to each 1-characterTim Peters2001-05-091-4/+3
* Intern 1-character strings as soon as they're created. As-is, they aren'tTim Peters2001-05-081-15/+12
* Blurb about the increased precision of float literals in .pyc/.pyo files.Tim Peters2001-05-081-0/+20
* SF bug #422177: Results from .pyc differs from .pyTim Peters2001-05-084-8/+34
* Removed some confusing sentences that are no longer relevant now thatJack Jansen2001-05-081-9/+0
* Michael Hudson <mwh21@cam.ac.uk>:Fred Drake2001-05-081-2/+3
* SF patch #421922: Implement rich comparison for dicts.Tim Peters2001-05-083-4/+104
* Fix several bugs and add two features.Jeremy Hylton2001-05-081-34/+88
* Several small changes. Mostly reformatting, adding parens.Jeremy Hylton2001-05-081-10/+11
* SF patch 419176 from MvL; fixed bug 418977Jeremy Hylton2001-05-083-6/+24
* Remove unused variableJeremy Hylton2001-05-081-1/+0
* This is a test showing SF bug 422177. It won't trigger until I check inTim Peters2001-05-081-0/+30
* SF bug #422108 - Error in rich comparisons.Tim Peters2001-05-071-1/+7
* Michael Hudson <mwh21@cam.ac.uk>:Fred Drake2001-05-071-53/+84
* Hmm... better add a version annotation for the Iterator Protocol section.Fred Drake2001-05-071-0/+2
* Added documentation for PyIter_Check() and PyIter_Next().Fred Drake2001-05-071-1/+39
* Generalize zip() to work with iterators.Tim Peters2001-05-064-28/+96
* Get rid of silly 5am "del" stmts.Tim Peters2001-05-051-2/+0
* Reimplement PySequence_Contains() and instance_contains(), so they workTim Peters2001-05-054-77/+67
* Skeletal version; I'm checking this in now so I can keep a list of changes,Andrew M. Kuchling2001-05-051-0/+106
* Generalize PySequence_Count() (operator.countOf) to work with iterators.Tim Peters2001-05-053-15/+70
* Remove redundant line.Tim Peters2001-05-051-1/+0
* Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators.Tim Peters2001-05-055-33/+94