- 29 May, 2006 15 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
Use Py_UnpackTuple instead of PyArg_ParseTuple where possible.
-
Georg Brandl authored
-
Georg Brandl authored
and watch out for handler name collisions.
-
Nick Coghlan authored
-
Georg Brandl authored
-
Armin Rigo authored
-
Bob Ippolito authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Nick Coghlan authored
Renames functional extension module to _functools and adds a Python functools module so that utility functions like update_wrapper can be added easily.
-
Georg Brandl authored
Fix refleak in exceptions.
-
- 28 May, 2006 20 commits
-
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
-
Armin Rigo authored
release builds of Python.
-
Georg Brandl authored
still used?)
-
Georg Brandl authored
-
Thomas Wouters authored
-
Michael W. Hudson authored
subclasses.
-
Georg Brandl authored
-
Georg Brandl authored
-
Georg Brandl authored
(fixes #1496539)
-
Armin Rigo authored
Remove various dependencies on dictionary order in the standard library tests, and one (clearly an oversight, potentially critical) in the standard library itself - base64.py. Remaining open issues: * test_extcall is an output test, messy to make robust * tarfile.py has a potential bug here, but I'm not familiar enough with this code. Filed in as SF bug #1496501. * urllib2.HTTPPasswordMgr() returns a random result if there is more than one matching root path. I'm asking python-dev for clarification...
-
Marc-André Lemburg authored
performance measurements. The module is currently just a proof-of-concept implementation, but will integrated into pybench once it is stable enough. License: pybench license. Author: Marc-Andre Lemburg.
-
Michael W. Hudson authored
Make some functions that should have been static static. Fix a bunch of refleaks by fixing the definition of MiddlingExtendsException. Remove all the __new__ implementations apart from BaseException_new. Rewrite most code that needs it to cope with NULL fields (such code could get excercised anyway, the __new__-removal just makes it more likely). This involved editing the code for WindowsError, which I can't test. This fixes all the refleaks in at least the start of a regrtest -R :: run.
-
Martin v. Löwis authored
claim that Erik von Blokland is the author of the installer picture.
-
George Yoshida authored
Contributed by Bjorn Tillenius.
-
Michael W. Hudson authored
Fix a number of problems with the need for speed code: One is doing this sort of thing: Py_DECREF(self->field); self->field = newval; Py_INCREF(self->field); without being very sure that self->field doesn't start with a value that has a __del__, because that almost certainly can lead to segfaults. As self->args is constrained to be an exact tuple we may as well exploit this fact consistently. This leads to quite a lot of simplification (and, hey, probably better performance). Add some error checking in places lacking it. Fix some rather strange indentation in the Unicode code. Delete some trailing whitespace. More to come, I haven't fixed all the reference leaks yet...
-
Fredrik Lundh authored
and use it for string copy operations. this gives a 20% speedup on some string benchmarks.
-
Tim Peters authored
bug in both: `className` was referenced before being checked for NULL.
-
Tim Peters authored
-
- 27 May, 2006 5 commits
-
-
George Yoshida authored
-
George Yoshida authored
Avoid obsolescence by directly referring to the section.
-
George Yoshida authored
-
Richard Jones authored
-
Richard Jones authored
-