- 31 Dec, 2000 3 commits
-
-
Jack Jansen authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
- 30 Dec, 2000 1 commit
-
-
Tim Peters authored
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.
-
- 29 Dec, 2000 3 commits
-
-
Jack Jansen authored
-
Tim Peters authored
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.
-
Tim Peters authored
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.
-
- 28 Dec, 2000 2 commits
-
-
Martin v. Löwis authored
Use types.UnicodeType if available, not type(u"").
-
Martin v. Löwis authored
- 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).
-
- 27 Dec, 2000 5 commits
-
-
Guido van Rossum authored
-
Guido van Rossum authored
"most recent call last").
-
Barry Warsaw authored
but only in "import foo as bar" statements (including optional preceding `from' clause).
-
Tim Peters authored
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.
-
- 26 Dec, 2000 5 commits
-
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
- 25 Dec, 2000 1 commit
-
-
Fred Drake authored
-
- 23 Dec, 2000 7 commits
-
-
Fred Drake authored
-
Fred Drake authored
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.
-
Fred Drake authored
warning for that module, so suppress just that one warning.
-
Andrew M. Kuchling authored
y coordinate), and change radius of second indicator to compensate Remove redundant setting of sradius
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Fred Drake authored
Removed warning on use of panel_userptr() in PyCursesPanel_userptr().
-
- 22 Dec, 2000 10 commits
-
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
beyond what's in _curses_panel
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
Original version written by Thomas Gellekum, reshaped into a separate module by AMK.
-
Andrew M. Kuchling authored
Remove several macros and #includes; py_curses.h contains them now.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
DECREF
-
- 21 Dec, 2000 3 commits
-
-
Fred Drake authored
CVS repository), provide the library version information.
-
Fred Drake authored
Wrapped some long lines.
-
Andrew M. Kuchling authored
-