summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* textView cleanup. Patch 1718043 Tal Einat.Kurt B. Kaiser2007-10-044-50/+54
| | | | | | | M idlelib/EditorWindow.py M idlelib/aboutDialog.py M idlelib/textView.py M idlelib/NEWS.txt
* Clean up EditorWindow close.Kurt B. Kaiser2007-10-043-14/+19
|
* Remove unused theme that was causing a fault in p3k.Kurt B. Kaiser2007-10-041-1/+0
|
* Assume that the user knows when he wants to end the line; don't insertKurt B. Kaiser2007-10-042-15/+4
| | | | something he didn't select or complete.
* itertools.count() no longer limited to sys.maxint.Raymond Hettinger2007-10-044-17/+82
|
* enumerate() is no longer bounded to using sequences shorter than LONG_MAX. ↵Raymond Hettinger2007-10-032-6/+53
| | | | The possibility of overflow was sending some newsgroup posters into a tizzy.
* Added note in footnote about string comparisons aboutMark Summerfield2007-10-031-2/+3
| | | | unicodedata.normalize().
* Added a class to store the digits of log(10), so that they can be madeFacundo Batista2007-10-021-16/+49
| | | | available when necessary without recomputing. Thanks Mark Dickinson
* Made the various is_* operations return booleans. This was discussedFacundo Batista2007-10-023-125/+2240
| | | | | | | | | | | with Cawlishaw by mail, and he basically confirmed that to these is_* operations, there's no need to return Decimal(0) and Decimal(1) if the language supports the False and True booleans. Also added a few tests for the these functions in extra.decTest, since they are mostly untested (apart from the doctests). Thanks Mark Dickinson
* Fix error introduced by r58288; if a tuple is length 0 return its repr andBrett Cannon2007-09-301-4/+4
| | | | don't worry about any self-referring tuples.
* tuple.__repr__ did not consider a reference loop as it is not possible fromBrett Cannon2007-09-303-0/+24
| | | | | | | | | | Python code; but it is possible from C. object.__str__ had the issue of not expecting a type to doing something within it's tp_str implementation that could trigger an infinite recursion, but it could in C code.. Both found thanks to BaseException and how it handles its repr. Closes issue #1686386. Thanks to Thomas Herve for taking an initial stab at coming up with a solution.
* Change to LogRecord.__init__() to fix #1206. Note that archaic use of ↵Vinay Sajip2007-09-271-1/+3
| | | | type(x) == types.DictType is because of keeping 1.5.2 compatibility. While this is much less relevant these days, there probably needs to be a separate commit for removing all archaic constructs at the same time.
* Minor date change.Vinay Sajip2007-09-271-2/+2
|
* #1208: document match object's boolean value.Georg Brandl2007-09-271-17/+20
|
* Change to basicConfig() to fix #1021.Vinay Sajip2007-09-271-1/+1
|
* Change to flush and close logic to fix #1760556.Vinay Sajip2007-09-271-4/+7
|
* Add various itemsAndrew M. Kuchling2007-09-251-18/+105
|
* Typo fixAndrew M. Kuchling2007-09-241-1/+1
|
* Remove stray odd character; grammar fixAndrew M. Kuchling2007-09-241-2/+2
|
* #1177: accept 2xx responses for https too, not only http.Georg Brandl2007-09-241-1/+3
|
* #1196: document default radix for int().Georg Brandl2007-09-241-11/+12
|
* Fix typo and double word.Georg Brandl2007-09-241-2/+2
|
* Patch # 188 by Philip Jenvey.Guido van Rossum2007-09-222-0/+8
| | | | | Make tell() mark CRLF as a newline. With unit test.
* Issue1704287: "make install" fails unless you do "make" first. MakeSean Reifscheider2007-09-211-3/+4
| | | | oldsharedmods and sharedmods in "libinstall".
* Patch #1181: add os.environ.clear() method.Georg Brandl2007-09-202-2/+14
|
* Try harder to stay within the 79-column limit. There's still two places that ↵Thomas Wouters2007-09-201-44/+55
| | | | go (way) over, but those are harder to fix without suffering in readability.
* #1176: document that string methods don't take keyword args.Georg Brandl2007-09-201-1/+3
|
* Patch #1541463: optimize performance of cgi.FieldStorage operations.Georg Brandl2007-09-202-10/+8
|
* alternate -> alternative.Georg Brandl2007-09-202-2/+2
|
* Fit nitsRaymond Hettinger2007-09-201-7/+11
|
* Issue #1772851. Optimization of __hash__ to behave better for big bigFacundo Batista2007-09-192-4/+43
| | | | numbers.
* Whitespace cleanup.Thomas Wouters2007-09-191-27/+27
|
* Fix obvious typo in threaded test.Thomas Wouters2007-09-191-1/+1
|
* Issue #1772851. Alters long.__hash__ from being *almost* completelyFacundo Batista2007-09-192-0/+19
| | | | | | | predictable to being completely predictable. The value of hash(n) is unchanged for any n that's small enough to be representable as an int, and also unchanged for the vast majority of long integers n of reasonable size.
* Annotated the correction to urllib.py, issue #1177Facundo Batista2007-09-191-1/+1
|
* issue1177: Ported Facundo's from urllib2 to urllib, accepting 2xx responses.Sean Reifscheider2007-09-191-1/+3
|
* Fix #1169: remove docstrings in functions for -OO.Georg Brandl2007-09-191-1/+1
|
* issue1172: Documentation of "done" attribute in cgi module.Sean Reifscheider2007-09-181-0/+5
|
* Properly indent two lines. (Spotted because it caused merge conflicts in theThomas Wouters2007-09-181-2/+2
| | | | py3k branch ;)
* Cleanup docs for NamedTuple.Raymond Hettinger2007-09-181-72/+71
|
* Speed up of the various division operations (remainder, divide,Facundo Batista2007-09-181-161/+139
| | | | divideint and divmod). Thanks Mark Dickinson.
* A bit of reordering, also show more subheadings in the lang ref index.Georg Brandl2007-09-182-43/+43
|
* Handle corner cased on 0-tuples and 1-tuples. Add verbose option so people ↵Raymond Hettinger2007-09-183-9/+33
| | | | can see how it works.
* Add item; sort properlyAndrew M. Kuchling2007-09-181-15/+53
|
* issue1082: Fixing platform and system for Vista.Sean Reifscheider2007-09-171-0/+6
|
* The methods always return Decimal classes, even if they'reFacundo Batista2007-09-172-34/+53
| | | | | executed through a subclass (thanks Mark Dickinson). Added a bit of testing for this.
* Decimal is updated, :)Facundo Batista2007-09-171-0/+2
|
* issue1597011: Fix for bz2 module corner-case error due to error checking bug.Sean Reifscheider2007-09-171-23/+17
|
* Add a bunch of GIL release/acquire points in tp_print implementations and forBrett Cannon2007-09-1713-8/+89
| | | | | | PyObject_Print(). Closes issue #1164.
* Sync-up named tuples with the latest version of the ASPN recipe.Raymond Hettinger2007-09-173-13/+61
| | | | | | | Allows optional commas in the field-name spec (help when named tuples are used in conjuction with sql queries). Adds the __fields__ attribute for introspection and to support conversion to dictionary form. Adds a __replace__() method similar to str.replace() but using a named field as a target. Clean-up spelling and presentation in doc-strings.