- 03 Ock, 2001 9 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
Marc-André Lemburg yazdı
codec to not apply Latin-1 mappings for keys which are not found in the mapping dictionaries, but instead treat them as undefined mappings. The patch was originally written by Martin v. Loewis with some additional (cosmetic) changes and an updated test script by Marc-Andre Lemburg. The standard codecs were recreated from the most current files available at the Unicode.org site using the Tools/scripts/gencodec.py tool. This patch closes the bugs #116285 and #119960.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Fred Drake yazdı
in the docstring.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
Added optional generation of project files. Redesigned dialog.
-
Neil Schemenauer yazdı
comparing different types.
-
Neil Schemenauer yazdı
this works on all platforms.
-
- 02 Ock, 2001 10 kayıt (commit)
-
-
Fred Drake yazdı
bug #127151.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Guido van Rossum yazdı
-
Andrew M. Kuchling yazdı
-
Guido van Rossum yazdı
and isdigit() methods.
-
Fred Drake yazdı
This closes (again!) bug #127098.
-
Guido van Rossum yazdı
Get rid of assignment to unused self.text.wordlist.
-
Neil Schemenauer yazdı
overhaul. Closes SF patch #102878.
-
Neil Schemenauer yazdı
fixes bug #126345.
-
- 01 Ock, 2001 5 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Fred Drake yazdı
-
Guido van Rossum yazdı
than a pixel don't get drawn at all. If you're building long curves made of such lines, this is a bad thing.
-
- 31 Ara, 2000 4 kayıt (commit)
-
-
Thomas Wouters yazdı
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.
-
Jack Jansen yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
-
- 30 Ara, 2000 1 kayıt (commit)
-
-
Tim Peters yazdı
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 Ara, 2000 3 kayıt (commit)
-
-
Jack Jansen yazdı
-
Tim Peters yazdı
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 yazdı
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 Ara, 2000 2 kayıt (commit)
-
-
Martin v. Löwis yazdı
Use types.UnicodeType if available, not type(u"").
-
Martin v. Löwis yazdı
- 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 Ara, 2000 5 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
"most recent call last").
-
Barry Warsaw yazdı
but only in "import foo as bar" statements (including optional preceding `from' clause).
-
Tim Peters yazdı
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 Ara, 2000 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
-