summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Apply rstrip() to the lines read from _dirfile in _update(), so that aGuido van Rossum2000-12-111-1/+1
| | | | dumbdbm archive created on Windows can be read on Unix.
* Hoepeful fix for SF bug #123924: Windows - using OpenSSL, problem withGuido van Rossum2000-12-111-1/+4
| | | | | | | | | | | | | | | | socket in httplib.py. The bug reports that on Windows, you must pass sock._sock to the socket.ssl() call. But on Unix, you must pass sock itself. (sock is a wrapper on Windows but not on Unix; the ssl() call wants the real socket object, not the wrapper.) So we see if sock has an _sock attribute and if so, extract it. Unfortunately, the submitter of the bug didn't confirm that this patch works, so I'll just have to believe it (can't test it myself since I don't have OpenSSL on Windows set up, and that's a nontrivial thing I believe).
* vgetargskeywords(): Patch for memory leak identified in bug #119862.Barry Warsaw2000-12-111-0/+1
|
* Make ConfigParser.Error inherit from Exception.Fred Drake2000-12-111-1/+3
|
* select.select(): Add note that though this function accepts empty lists,Fred Drake2000-12-111-13/+15
| | | | | | | | using *only* empty lists may not be acceptable on all platforms, with the specific caveat that it does not work on Windows. Also clarified list of acceptable objects that may be in the lists, to let the user know that file objects are not usable here on Windows.
* Adapted to Universal Headers 3.3.2. More to follow.Jack Jansen2000-12-1028-546/+3034
|
* (Patch #102698) Fix for a bug reported by Wade Leftwich:Andrew M. Kuchling2000-12-101-4/+4
| | | | StreamReader ignores the 'errors' parameter passed to its constructor
* SF bug 124051: ndiff "?" lines can be confusing. Well, they still can, butTim Peters2000-12-091-28/+19
| | | | after implementing it I liked Gregor's two-"?" line idea a lot.
* Lots of small improvements and bits of added information on the DOM API.Fred Drake2000-12-081-59/+110
|
* Fix error noted by Gerrit Holl (old; had been buried in my INBOX):Fred Drake2000-12-071-3/+3
| | | | | sequence repitition works just fine with long integers now, so we should not say that only plain integers are allowed.
* Added a note that objects which emulate built-in types should onlyFred Drake2000-12-071-0/+7
| | | | | implement as many of the relevant methods as make sense for the particular information being modelled.
* Lots of additional information. Not done, but much better.Fred Drake2000-12-072-47/+173
|
* Another name!Fred Drake2000-12-071-0/+1
|
* Typo caught by Jim Tittsler <jwt@onjapan.net>: They --> TheFred Drake2000-12-071-1/+1
|
* Note that, as of Python 1.6, the .returns_unicode attribute on parserFred Drake2000-12-071-0/+2
| | | | objects can be modified at any point with the expected results.
* The C+ compiler is called $(CXX) these days, not CCC.Guido van Rossum2000-12-062-8/+8
| | | | This fixes SF Bug #124478.
* Fix `credits' to credit the Jython developers when running under thatBarry Warsaw2000-12-061-3/+9
| | | | | interpreter. Update and reword the credits for CPython. Closes SF patch #102665.
* _getframe(): New sys module function for getting at the stack frame.Barry Warsaw2000-12-062-0/+48
| | | | | Implements and closes SF patch #102106, with Guido's suggested documentation changes.
* posix_getlogin(): Be more cautious about interpreting a NULL fromFred Drake2000-12-061-1/+1
| | | | | getlogin() -- it is not clear that a NULL is always an error.
* posix_getlogin(): Handle the possibility that getlogin() can returnFred Drake2000-12-061-3/+12
| | | | | | | NULL without setting errno; observed on Linux Mandrake 7.2 by an anonymous user. This closes bug #124758.
* Jeffrey D. Collins <tokeneater@users.sourceforge.net>:Fred Drake2000-12-061-3/+3
| | | | | | Fix type of the self parameter to some string object methods. This closes patch #102670.
* Two changes:Sjoerd Mullender2000-12-061-8/+16
| | | | | | | - Use new Error class (subclass of RuntimeError so is backward compatible) which is raised when RuntimeError used to be raised. - Report original attribute name in error messages instead of name mangled with namespace URL.
* Two typos caught by /F; thanks!Fred Drake2000-12-041-2/+2
|
* Added a comment for ContentHandler.characters() explaining how to migrateFred Drake2000-12-041-0/+8
| | | | SAX1 code to SAX2, based on bug #123695.
* Add test cases for ConfigParser.remove_option() behavior. This includesFred Drake2000-12-041-0/+24
| | | | coverage to ensure bug #124324 does not re-surface.
* remove_option(): Use the right variable name for the option name!Fred Drake2000-12-041-2/+2
| | | | This closes bug #124324.
* Make isinstance() more permissive in what types of arguments itNeil Schemenauer2000-12-041-17/+9
| | | | | accepts. Clarify exception messages for isinstance() and issubclass(). Closes bug #124106.
* Updated for the current state of the main Python source tree.Jack Jansen2000-12-032-4/+4
|
* These have been replaced by the new generated projects.Jack Jansen2000-12-0349-47/+0
|
* The new generated plugin projects. Checked in in XML form, so cvs diffs ↵Jack Jansen2000-12-0348-0/+20650
| | | | should work.
* Added an extraexportsymbols option, to allow (you guessed it:-) extra export ↵Jack Jansen2000-12-031-1/+5
| | | | symbols to be specified.
* Allow recursive searh entries by ending the pathname in ":*".Jack Jansen2000-12-032-2/+9
|
* Don't generate SYM files by default.Jack Jansen2000-12-031-1/+1
|
* Updated for the new project names.Jack Jansen2000-12-031-70/+70
|
* Got it working for all important plugins, and moved it from Build to scripts.Jack Jansen2000-12-032-43/+108
|
* Call of _cmp had wrong number of paramereters.Moshe Zadka2000-12-031-2/+2
| | | | Fixed definition of _cmp.
* Convert Unicode strings to byte strings before passing them into specificMartin v. Löwis2000-12-031-14/+25
| | | | protocols. Closes bug #119822.
* Update Moshe Zadka's email address to one works and might last a while.Fred Drake2000-12-0124-24/+24
|
* Patch by Michael Hudson to clarify the error message fromGuido van Rossum2000-12-011-1/+7
| | | | getsockaddrarg when the address is not a tuple.
* Clarified some of the error messages, esp. "read-only characterGuido van Rossum2000-12-011-17/+16
| | | | buffer" replaced by "string or read-only character buffer".
* Made the description of %[udxXo] formats of negative longs in 2.1 more accurate.Tim Peters2000-12-011-2/+12
| | | | I suggested to Guido that %u be deprecated (it seems useless in Python to me).
* Backing out my changes.Moshe Zadka2000-11-303-90/+0
| | | | Improved version coming soon to a Source Forge near you!
* Only use getline() when compiling using glibcAndrew M. Kuchling2000-11-301-1/+1
|
* Added .first{item,value,key}() to dictionaries.Moshe Zadka2000-11-303-0/+90
| | | | | Complete with docos and tests. OKed by Guido.
* Adjust to allow an explanation of the changes to be included in theFred Drake2000-11-302-2/+13
| | | | notification message.
* A few small refinements to the table building code.Fred Drake2000-11-301-7/+10
|
* Use a table to describe the keys to the locale information dictionary;Fred Drake2000-11-301-68/+43
| | | | | this is slightly easier to read than the list environment that had been used.
* Use small tables instead of bare \item markers to describe the contentsFred Drake2000-11-301-53/+49
| | | | | | | of return tuples. The bare \item took advantage of an implementation detail when formatting in LaTeX, and was just wrong when generating HTML. It also broke the XML conversion scripts, since there was no enclosing list-like environment to contain them.
* Added name.Fred Drake2000-11-301-0/+1
|
* Fox for SF bug #123859: %[duxXo] long formats inconsistent.Tim Peters2000-11-304-24/+50
|