summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Generalize dictionary() to accept a sequence of 2-sequences. At theTim Peters2001-10-267-36/+199
* Update. __dict__ assignment done. Reorder remaining "to do" items byGuido van Rossum2001-10-261-7/+22
* Allow assignment to newinstance.__dict__.Guido van Rossum2001-10-262-1/+50
* Fix two typos, one noted by Noah Spurrier in SF bug #475166, theGuido van Rossum2001-10-262-2/+3
* Add sendall() method, which loops until all data is written or anGuido van Rossum2001-10-261-2/+44
* Add yet more markup that let's a stylesheet pick out a small bit of theFred Drake2001-10-261-3/+11
* Enforce a bit of markup consistency.Fred Drake2001-10-261-13/+12
* Minor textual adjustment, and style-guide conformance (no use of "iff").Fred Drake2001-10-261-4/+5
* A fix for SF bug #472560, extra newlines returned by get_param() whenBarry Warsaw2001-10-253-1/+51
* Added various tidbits.Jack Jansen2001-10-251-3/+18
* I went back and figured out the release date for Python 2.2a1.Barry Warsaw2001-10-251-0/+1
* Applying proposed patch for bug #474583, optional support forBarry Warsaw2001-10-253-148/+263
* Use PyDict_Copy() and PyDict_Update() instead of using PyObject_CallMethod()Fred Drake2001-10-251-5/+3
* Typo: NamedNodeList --> NamedNodeMapFred Drake2001-10-251-1/+1
* Fix SF bug #474538: Memory (reference) leak in poller.register (Dave Brueck)Guido van Rossum2001-10-252-3/+14
* Ignore the posixfile deprecation warning for the test suite.Fred Drake2001-10-251-0/+3
* complex_subtype_from_string(): move the declaration of s_buffer[] outGuido van Rossum2001-10-251-1/+3
* Slightly better conformance to the Python C style guide.Fred Drake2001-10-251-4/+8
* One more LaTeX-ism that we'd rather ignore.Fred Drake2001-10-251-0/+1
* No need to run make twice here.Fred Drake2001-10-251-1/+0
* Update the rules so that changes to the HTML stylesheet cause appropriateFred Drake2001-10-251-21/+55
* After discussion with itojun, it was clarified that Tru64 is in error,Martin v. Löwis2001-10-251-1/+3
* (experimental) "finditer" method/function. this works pretty muchFredrik Lundh2001-10-242-0/+38
* Add a warning to the posixfile module stating that it will go away.Fred Drake2001-10-241-0/+7
* Make the deprecation notice use the same form as other such notices.Fred Drake2001-10-241-3/+3
* Minor revision of the text.Fred Drake2001-10-241-2/+2
* Note updated RISCOS port. Remove reference in the 2.1 release notesGuido van Rossum2001-10-241-4/+8
* Convert getrefcount() to METH_O, and sys_excepthook() to useFred Drake2001-10-241-6/+3
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-2433-189/+257
* SF bug #473525 pyclbr brokenTim Peters2001-10-241-5/+6
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-2412-72/+140
* SF patch #474590 -- RISC OS supportGuido van Rossum2001-10-242-108/+377
* When describing "import *", add a level of indirection between "*" and theFred Drake2001-10-241-3/+17
* Fix typo. Thanks to Jack Jansen for spotting it.Martin v. Löwis2001-10-241-1/+1
* Check for HP/UX curses problems. Define _XOPEN_SOURCE_EXTENDED andMartin v. Löwis2001-10-245-7/+95
* Include netdb.h to detect getaddrinfo. Work around problem with getaddrinfoMartin v. Löwis2001-10-243-369/+361
* Oops, undo previous change, which wasn't supposed to escape from myJack Jansen2001-10-241-1/+1
* Added missing cast.Jack Jansen2001-10-231-1/+1
* Some escaped newlines had spaces between the backslash and the newline. Also ...Jack Jansen2001-10-231-7/+4
* New URL for Joe Strouts example page.Jack Jansen2001-10-231-3/+3
* Got this to work in MacPython. The code is #ifdef macintosh style (to match t...Jack Jansen2001-10-231-2/+10
* Added _hotshot.Jack Jansen2001-10-232-0/+3
* quit() wasn't included in the suite. This is a quick manual patch to add it.Jack Jansen2001-10-231-1/+2
* Tweaks for MacPython 2.2b1Jack Jansen2001-10-2311-57/+52
* Tweaks for MacPython 2.2b1.Jack Jansen2001-10-231-0/+0
* Apply the first chunk of the second patch from SF bug #471720:Guido van Rossum2001-10-231-3/+11
* SF patch #474175 (Jay T Miller): file.readinto arg parsing bugGuido van Rossum2001-10-232-1/+3
* Convert the ref() and proxy() implementations to use the newFred Drake2001-10-231-2/+2
* Documentation for the new PyArg_UnpackTuple() function.Fred Drake2001-10-231-0/+47
* PyArg_UnpackTuple(): New argument unpacking function suggested by JimFred Drake2001-10-232-0/+61