- 06 Agu, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
Closes SF bug #586937.
-
- 05 Agu, 2002 3 kayıt (commit)
-
-
Neal Norwitz yazdı
-
Neil Schemenauer yazdı
-
Raymond Hettinger yazdı
will trigger splitting on any whitespace.
-
- 04 Agu, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 02 Agu, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 01 Agu, 2002 3 kayıt (commit)
-
-
Guido van Rossum yazdı
Fix for SF bug 570678 (can't flush read-only file on Mac OS X).
-
Guido van Rossum yazdı
Tim found that once test_longexp has run, test_sort takes very much longer to run than normal. A profiler run showed that this was due to PyFrame_New() taking up an unreasonable amount of time. A little thinking showed that this was due to the while loop clearing the space available for the stack. The solution is to only clear the local variables (and cells and free variables), not the space available for the stack, since anything beyond the stack top is considered to be garbage anyway. Also, use memset() instead of a while loop counting backwards. This should be a time savings for normal code too! (By a probably unmeasurable amount. :-)
-
Guido van Rossum yazdı
SF patch 588728 (Nathan Srebro). The __delete__ method wrapper for descriptors was not supported (I added a test, too.)
-
- 31 Tem, 2002 1 kayıt (commit)
-
-
Michael W. Hudson yazdı
-
- 30 Tem, 2002 3 kayıt (commit)
-
-
Fred Drake yazdı
The "Matching vs. Searching" Info node is unreachable from the Info program (but is fine in Emacs's Info mode). This patch seems to fix it. This is the only occurrence where the info reader fails, so probably it could be addressed in the python docs as a workaround. Forwarded the report to the info maintainer.
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
- 29 Tem, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
of encodings. Skip modules that don't have a getregentry function.
-
- 28 Tem, 2002 4 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
Neal Norwitz yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
- 26 Tem, 2002 2 kayıt (commit)
-
-
Fred Drake yazdı
the version on the trunk.
-
Fred Drake yazdı
-
- 25 Tem, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
readers are not given the wrong impression that they should be using those on a regualar basis. This closes SF bug #585598.
-
- 23 Tem, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Return the selected item, if there is any.
-
- 17 Tem, 2002 2 kayıt (commit)
-
-
Fred Drake yazdı
initial/default value.
-
Tim Peters yazdı
-
- 16 Tem, 2002 3 kayıt (commit)
-
-
Tim Peters yazdı
existed at the time atexit first got imported. That's a bug, and this fixes it. Also reworked test_atexit.py to test for this too, and to stop using an "expected output" file, and to test what actually happens at exit instead of just simulating what it thinks atexit will do at exit.
-
Jeremy Hylton yazdı
Backported from the trunk.
-
Jeremy Hylton yazdı
If the object is an ExtensionClass, for example, the slot is not even defined. So we must check that the type has the slot (implied by HAVE_CLASS) before calling tp_init().
-
- 12 Tem, 2002 5 kayıt (commit)
-
-
Fred Drake yazdı
Closes SF bug #579991.
-
Guido van Rossum yazdı
Remove httplib from tested modules. The test of httplib makes it difficult to maintain httplib. There are two many idioms that pyclbr doesn't seem to understand, and I don't understand how to update these tests to make them work. Also remove commented out test of urllib2.
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
Change _begin() back to begin(). Fix for SF bug 579107. Fix for SF bug #432621: httplib: multiple Set-Cookie headers Fix SF bug #575360 Handle HTTP/0.9 responses.
-
Guido van Rossum yazdı
Fix SF bug 579701 (Fernando Pérez); an input line consisting of one or more spaces only crashed pdb.
-
- 11 Tem, 2002 4 kayıt (commit)
-
-
Tim Peters yazdı
-
Tim Peters yazdı
immortal object here as a leak. Made the object mortal again at the end.
-
Tim Peters yazdı
-
Tim Peters yazdı
__del__ method died with Fatal Python error: GC object already in linked list in both release and debug builds. Fixed that. Added a new test that dies without the fix.
-
- 10 Tem, 2002 2 kayıt (commit)
-
-
Fred Drake yazdı
Closes SF bug #578308.
-
Fred Drake yazdı
Closes SF bug #577774.
-
- 09 Tem, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
Closes SF bug #513666.
-
- 08 Tem, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
Repair segfaults and infinite loops in COUNT_ALLOCS builds in the presence of new-style (heap-allocated) classes/types. Note: test_gc fails in a COUNT_ALLOCS build now, because it expects a new-style class to get garbage collected.
-