Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Got rid of 68K support. | Jack Jansen | 2001-01-03 | 2 | -59/+41 |
| | | | | | Added optional generation of project files. Redesigned dialog. | ||||
* | Use == rather than cmp(). The return value of cmp() is not well defined when | Neil Schemenauer | 2001-01-03 | 2 | -128/+130 |
| | | | | comparing different types. | ||||
* | Use numbers that can be accurately represented on binary machines. I hope | Neil Schemenauer | 2001-01-03 | 2 | -587/+587 |
| | | | | this works on all platforms. | ||||
* | Do not cache <img> tags for navigation icons as agressively; this fixes | Fred Drake | 2001-01-02 | 1 | -31/+36 |
| | | | | bug #127151. | ||||
* | Remove (unused) regex imports. | Jack Jansen | 2001-01-02 | 2 | -2/+0 |
| | |||||
* | Use re in stead of regex. | Jack Jansen | 2001-01-02 | 3 | -31/+34 |
| | |||||
* | Make the test program work outside IDLE. | Guido van Rossum | 2001-01-02 | 1 | -6/+6 |
| | |||||
* | Add forgotten import | Andrew M. Kuchling | 2001-01-02 | 1 | -0/+1 |
| | |||||
* | Duh. Instead of string.whitespace and string.digits, use isspace() | Guido van Rossum | 2001-01-02 | 1 | -6/+5 |
| | | | | and isdigit() methods. | ||||
* | Improve description of else clause of the try/except/else statement. | Fred Drake | 2001-01-02 | 1 | -6/+11 |
| | | | | This closes (again!) bug #127098. | ||||
* | Add Alt-slash to Unix keydefs (I somehow need it on RH 6.2). | Guido van Rossum | 2001-01-02 | 1 | -2/+1 |
| | | | | Get rid of assignment to unused self.text.wordlist. | ||||
* | Add more tests for compare and coercion in preparation for the coercion | Neil Schemenauer | 2001-01-02 | 4 | -0/+1346 |
| | | | | overhaul. Closes SF patch #102878. | ||||
* | Add garbage collection for module objects. Closes patch #102939 and | Neil Schemenauer | 2001-01-02 | 1 | -2/+27 |
| | | | | fixes bug #126345. | ||||
* | Updated for new universal headers (oops... this was loooong due). | Jack Jansen | 2001-01-01 | 3 | -330/+1712 |
| | |||||
* | Minor clarficiations in the dialogs about which errno file is wanted when (I ↵ | Jack Jansen | 2001-01-01 | 1 | -2/+2 |
| | | | | had also forgotten:-). | ||||
* | New .mcp names for tkinter and imgmodules projects. | Jack Jansen | 2001-01-01 | 1 | -2/+2 |
| | |||||
* | Fix up an awkward sentence, pointed out by Chris Ryland <cpr@emsoftware.com>. | Fred Drake | 2001-01-01 | 1 | -1/+1 |
| | |||||
* | Patch by kragen@pobox.com: When tracing is turned on, lines shorter | Guido van Rossum | 2001-01-01 | 1 | -0/+2 |
| | | | | | than a pixel don't get drawn at all. If you're building long curves made of such lines, this is a bad thing. | ||||
* | Change documentation of 'else' clause of 'try/except' to make clear that it | Thomas Wouters | 2000-12-31 | 1 | -3/+5 |
| | | | | | | | | doesn't get triggered by 'return', 'break' or 'continue'. If the 'try-inside-continue' patch does not get accepted before next release, the 'or continue' should be removed ;P Closes SF patch #103045 and SF bug #127098. | ||||
* | Replaced with .mcp projects in Extensions/Imaging | Jack Jansen | 2000-12-31 | 2 | -1/+0 |
| | |||||
* | Added test case for legal DOM children | Andrew M. Kuchling | 2000-12-31 | 2 | -2/+28 |
| | |||||
* | Patch #102485 ] Check for legal children when adding children to a DOM node | Andrew M. Kuchling | 2000-12-31 | 1 | -6/+30 |
| | |||||
* | Christmas present to myself: changed regrtest in two ways: | Tim Peters | 2000-12-30 | 1 | -4/+30 |
| | | | | | | | | | | | | | 1. When running in verbose mode, if any test happens to pass, print a warning that the apparent success may be bogus (stdout isn't compared in verbose mode). Been fooled by that too often. 2. When a test fails because the expected stdout doesn't match the actual stdout, print as much of stdout as did match before the first failing write. Else we get failures of the form "expected 'a', got 'b'" and a glance at the expected output file shows 500 instances of 'a' -- no idea where it failed, and, as in #1, trying to run in verbose mode instead doesn't help because stdout isn't compared then. | ||||
* | Changed the search path for pyexpat to include all of the expat folder. | Jack Jansen | 2000-12-29 | 1 | -1/+1 |
| | |||||
* | getopt used to sort the long option names, in an attempt to simplify | Tim Peters | 2000-12-29 | 1 | -12/+2 |
| | | | | | | | the logic. That resulted in a bug. My previous getopt checkin repaired the bug but left the sorting. The solution is significantly simpler if we don't bother sorting at all, so this checkin gets rid of the sort and the code that relied on it. | ||||
* | Fred, THIS NEEDS DOCS! The function docstrings tell the tale. | Tim Peters | 2000-12-29 | 4 | -4/+200 |
| | | | | | | | | | | | | | Christmas present to myself: the bisect module didn't define what happened if the new element was already in the list. It so happens that it inserted the new element "to the right" of all equal elements. Since it wasn't defined, among other bad implications it was a mystery how to use bisect to determine whether an element was already in the list (I've seen code that *assumed* "to the right" without justification). Added new methods bisect_left and insort_left that insert "to the left" instead; made the old names bisect and insort aliases for the new names bisect_right and insort_right; beefed up docstrings to explain what these actually do; and added a std test for the bisect module. | ||||
* | Merge with 1.8 of pulldom.py: | Martin v. Löwis | 2000-12-28 | 1 | -1/+7 |
| | | | | Use types.UnicodeType if available, not type(u""). | ||||
* | Merge changes up to 1.10 from PyXML: | Martin v. Löwis | 2000-12-28 | 1 | -1/+11 |
| | | | | | | | - implement hasAttribute and hasAttributeNS (1.7) - Node.replaceChild(): Update the sibling nodes to point to newChild. Set the .nextSibling attribute on oldChild instead of adding a .newChild attribute (1.9). | ||||
* | Fixed snake logo and minus image by Daniel Calvelo. | Guido van Rossum | 2000-12-27 | 2 | -0/+0 |
| | |||||
* | Make Traceback header conform to new traceback ("innermost last" -> | Guido van Rossum | 2000-12-27 | 2 | -2/+2 |
| | | | | "most recent call last"). | ||||
* | (python-font-lock-keywords): Add highlighting of `as' as a keyword, | Barry Warsaw | 2000-12-27 | 1 | -0/+2 |
| | | | | | but only in "import foo as bar" statements (including optional preceding `from' clause). | ||||
* | Fix for SF bug | Tim Peters | 2000-12-27 | 1 | -13/+30 |
| | | | | | | https://sourceforge.net/bugs/?func=detailbug&bug_id=126863&group_id=5470 "getopt long option handling broken". Tossed the excruciating logic in long_has_args in favor of something obviously correct. | ||||
* | Add test case for SF bug | Tim Peters | 2000-12-27 | 1 | -0/+9 |
| | | | | https://sourceforge.net/bugs/?func=detailbug&bug_id=126863&group_id=5470 | ||||
* | Fix doubled word | Andrew M. Kuchling | 2000-12-26 | 1 | -1/+1 |
| | |||||
* | Remove redundant reference to tab (since it = 'horizontal tab') | Andrew M. Kuchling | 2000-12-26 | 1 | -1/+1 |
| | |||||
* | Make isspace(chr(32)) return true | Andrew M. Kuchling | 2000-12-26 | 1 | -1/+1 |
| | |||||
* | Document ERR and OK | Andrew M. Kuchling | 2000-12-26 | 1 | -0/+11 |
| | |||||
* | Add the curses constants ERR and OK to the module at TG's suggestion | Andrew M. Kuchling | 2000-12-26 | 1 | -0/+3 |
| | |||||
* | Make sure subsections are formatted into HTML pages with reasonable names. | Fred Drake | 2000-12-25 | 1 | -4/+5 |
| | |||||
* | Added information on the ExternalEntityParserCreate() method. | Fred Drake | 2000-12-23 | 1 | -2/+12 |
| | |||||
* | The "context" parameter to the ExternalEntityRefParameter exposes internal | Fred Drake | 2000-12-23 | 2 | -4/+44 |
| | | | | | | | | | information from the Expat library that is not part of its public API. Do not print this information as the format of the string may (and will) change as Expat evolves. Add additional tests to make sure the ParserCreate() function raises the right exceptions on illegal parameters. | ||||
* | The regression test for the regex module should not trip the deprecation | Fred Drake | 2000-12-23 | 1 | -0/+3 |
| | | | | warning for that module, so suppress just that one warning. | ||||
* | Choose the smallest value of x,y for the clock's radius (instead of just ↵ | Andrew M. Kuchling | 2000-12-23 | 1 | -9/+6 |
| | | | | | | | taking the y coordinate), and change radius of second indicator to compensate Remove redundant setting of sradius | ||||
* | Remove superfluous semicolons | Andrew M. Kuchling | 2000-12-23 | 3 | -8/+8 |
| | |||||
* | CHange error messages for ord(), using "string" instead of "string or Unicode" | Andrew M. Kuchling | 2000-12-23 | 1 | -2/+3 |
| | |||||
* | Shortened / wrapped some long lines. | Fred Drake | 2000-12-23 | 1 | -8/+11 |
| | | | | Removed warning on use of panel_userptr() in PyCursesPanel_userptr(). | ||||
* | Add 'see also' link to curses.panel | Andrew M. Kuchling | 2000-12-22 | 1 | -0/+2 |
| | |||||
* | Add correction caught by Thomas Gellekum (and sitting in my e-mail) | Andrew M. Kuchling | 2000-12-22 | 1 | -1/+2 |
| | |||||
* | Wrapper for _curses_panel module; currently this adds nothing extra | Andrew M. Kuchling | 2000-12-22 | 1 | -0/+9 |
| | | | | beyond what's in _curses_panel | ||||
* | Added documentation for the panel wrapper module | Andrew M. Kuchling | 2000-12-22 | 1 | -0/+93 |
| |