Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Regenerated from Universal Headers 3.3.2 | Jack Jansen | 2000-12-12 | 18 | -405/+847 |
| | |||||
* | Put all AE constants into AppleEvents.py | Jack Jansen | 2000-12-12 | 6 | -911/+905 |
| | |||||
* | Add popitem(). | Guido van Rossum | 2000-12-12 | 1 | -0/+2 |
| | |||||
* | "Documentation" for {}.popitem(). | Guido van Rossum | 2000-12-12 | 1 | -0/+6 |
| | |||||
* | Added test for {}.popitem(). | Guido van Rossum | 2000-12-12 | 1 | -0/+24 |
| | |||||
* | Add popitem() -- SF patch #102733. | Guido van Rossum | 2000-12-12 | 1 | -0/+53 |
| | |||||
* | Qdoffs now exports GWorld new/convert, and Qt uses them. | Jack Jansen | 2000-12-12 | 2 | -5/+3 |
| | | | | Drag moved to core toolbox modules (Win uses it). | ||||
* | Drag moved to core toolbox modules (Win uses it). | Jack Jansen | 2000-12-12 | 6 | -851/+11 |
| | |||||
* | Qdoffs now exports GWorld new/convert, and Qt uses them. | Jack Jansen | 2000-12-12 | 2 | -0/+20 |
| | |||||
* | Add URL with info for PIL. | Guido van Rossum | 2000-12-12 | 1 | -0/+1 |
| | |||||
* | Typo detected by "the miraculous Debian package lint tool "lintian" | Guido van Rossum | 2000-12-12 | 1 | -1/+1 |
| | | | | | | | (http://package.debian.org/lintian), which includes a spellchecker for common typos in control files of packages... You see, we're so paranoid that we even have automatic tools that keep monitoring license files ;-)" (Gregor Hoffleit) | ||||
* | Changed .getaliases() support to register the new aliases in the | Marc-André Lemburg | 2000-12-12 | 1 | -4/+12 |
| | | | | | | | | | | | encodings package aliases mapping dictionary rather than in the internal cache used by the search function. This enables aliases to take advantage of the full normalization process applied to encoding names which was previously not available. The patch restricts alias registration to new aliases. Existing aliases cannot be overridden anymore. | ||||
* | Partial fix for SF bug 122780 (msvcrt.locking constants aren't defined). | Tim Peters | 2000-12-12 | 1 | -12/+47 |
| | | | | Still needs docs; see bug report (which was reassigned to Fred) for MS's docs. | ||||
* | SF bug 110843: Low FD_SETSIZE limit on Win32 (PR#41). Boosted to 512. | Tim Peters | 2000-12-12 | 2 | -1/+18 |
| | |||||
* | Trivial typo fix, submitted by Charles Waldman (SF patch #102794). | Guido van Rossum | 2000-12-12 | 1 | -1/+1 |
| | |||||
* | Additional docs for __iadd__ and family, closing SF bug #117178 and SF patch | Thomas Wouters | 2000-12-11 | 1 | -0/+26 |
| | | | | #102169. | ||||
* | Adjust explanation of operator precedence summary -- exponentiation groups | Fred Drake | 2000-12-11 | 1 | -1/+2 |
| | | | | | | from right to left! Closes bug #125391. | ||||
* | Update the docstring. | Fred Drake | 2000-12-11 | 1 | -2/+31 |
| | | | | | Add a Node class that defines the NodeType constants, based on discussion in the XML-SIG. | ||||
* | Added tests to avoid regression on bug #125375. | Fred Drake | 2000-12-11 | 2 | -1/+34 |
| | | | | | | | | roundtrip(): Show the offending syntax tree when things break; this makes it a little easier to debug the module by adding test cases. (Still need better tests for this module, but there's not enough time today.) | ||||
* | validate_varargslist(): Fix two bugs in this function, one that affected | Fred Drake | 2000-12-11 | 1 | -11/+20 |
| | | | | | | | it when *args and/or **kw are used, and one when they are not. This closes bug #125375: "parser.tuple2ast() failure on valid parse tree". | ||||
* | Added link to HTML version of the NumPy documentation. | Fred Drake | 2000-12-11 | 1 | -2/+4 |
| | | | | This closes bug #124943. | ||||
* | Apply rstrip() to the lines read from _dirfile in _update(), so that a | Guido van Rossum | 2000-12-11 | 1 | -1/+1 |
| | | | | dumbdbm archive created on Windows can be read on Unix. | ||||
* | Hoepeful fix for SF bug #123924: Windows - using OpenSSL, problem with | Guido van Rossum | 2000-12-11 | 1 | -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 Warsaw | 2000-12-11 | 1 | -0/+1 |
| | |||||
* | Make ConfigParser.Error inherit from Exception. | Fred Drake | 2000-12-11 | 1 | -1/+3 |
| | |||||
* | select.select(): Add note that though this function accepts empty lists, | Fred Drake | 2000-12-11 | 1 | -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 Jansen | 2000-12-10 | 28 | -546/+3034 |
| | |||||
* | (Patch #102698) Fix for a bug reported by Wade Leftwich: | Andrew M. Kuchling | 2000-12-10 | 1 | -4/+4 |
| | | | | StreamReader ignores the 'errors' parameter passed to its constructor | ||||
* | SF bug 124051: ndiff "?" lines can be confusing. Well, they still can, but | Tim Peters | 2000-12-09 | 1 | -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 Drake | 2000-12-08 | 1 | -59/+110 |
| | |||||
* | Fix error noted by Gerrit Holl (old; had been buried in my INBOX): | Fred Drake | 2000-12-07 | 1 | -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 only | Fred Drake | 2000-12-07 | 1 | -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 Drake | 2000-12-07 | 2 | -47/+173 |
| | |||||
* | Another name! | Fred Drake | 2000-12-07 | 1 | -0/+1 |
| | |||||
* | Typo caught by Jim Tittsler <jwt@onjapan.net>: They --> The | Fred Drake | 2000-12-07 | 1 | -1/+1 |
| | |||||
* | Note that, as of Python 1.6, the .returns_unicode attribute on parser | Fred Drake | 2000-12-07 | 1 | -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 Rossum | 2000-12-06 | 2 | -8/+8 |
| | | | | This fixes SF Bug #124478. | ||||
* | Fix `credits' to credit the Jython developers when running under that | Barry Warsaw | 2000-12-06 | 1 | -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 Warsaw | 2000-12-06 | 2 | -0/+48 |
| | | | | | Implements and closes SF patch #102106, with Guido's suggested documentation changes. | ||||
* | posix_getlogin(): Be more cautious about interpreting a NULL from | Fred Drake | 2000-12-06 | 1 | -1/+1 |
| | | | | | getlogin() -- it is not clear that a NULL is always an error. | ||||
* | posix_getlogin(): Handle the possibility that getlogin() can return | Fred Drake | 2000-12-06 | 1 | -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 Drake | 2000-12-06 | 1 | -3/+3 |
| | | | | | | Fix type of the self parameter to some string object methods. This closes patch #102670. | ||||
* | Two changes: | Sjoerd Mullender | 2000-12-06 | 1 | -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 Drake | 2000-12-04 | 1 | -2/+2 |
| | |||||
* | Added a comment for ContentHandler.characters() explaining how to migrate | Fred Drake | 2000-12-04 | 1 | -0/+8 |
| | | | | SAX1 code to SAX2, based on bug #123695. | ||||
* | Add test cases for ConfigParser.remove_option() behavior. This includes | Fred Drake | 2000-12-04 | 1 | -0/+24 |
| | | | | coverage to ensure bug #124324 does not re-surface. | ||||
* | remove_option(): Use the right variable name for the option name! | Fred Drake | 2000-12-04 | 1 | -2/+2 |
| | | | | This closes bug #124324. | ||||
* | Make isinstance() more permissive in what types of arguments it | Neil Schemenauer | 2000-12-04 | 1 | -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 Jansen | 2000-12-03 | 2 | -4/+4 |
| | |||||
* | These have been replaced by the new generated projects. | Jack Jansen | 2000-12-03 | 49 | -47/+0 |
| |