- 27 Nov, 2002 12 commits
-
-
Michael W. Hudson authored
see problems with my code that I didn't see before the checkin, but: When a subtype .mro() fails, we need to reset the type whose __bases__ are being changed, too. Fix + test.
-
Michael W. Hudson authored
mro() methods. Now any exception aborts the whole __bases__ change. And more tests.
-
Andrew M. Kuchling authored
-
Andrew M. Kuchling authored
of using the CCompiler.find_library_file() provided by the Distutils. This patch fixes it to use the Distutils method at the cost of some additional glue. (The duplication resulted in the SSL module not being automatically built on Macs; the Distutils knew that shared libraries on OS X have a .dylib extension, but the setup.py code didn't.)
-
Andrew M. Kuchling authored
Fill in the missing details. (From Jack Jansen)
-
Guido van Rossum authored
-
Michael W. Hudson authored
-
Martin v. Löwis authored
-
Raymond Hettinger authored
Constructor accepts optional keyword arguments after a optional items list. Add fromkeys() as an alternate constructor from an iterable over keys. Expand related unittests.
-
Raymond Hettinger authored
method for constructing new dictionaries from sequences of keys.
-
Fred Drake authored
new-style classes. Closes SF bug #637941.
-
Guido van Rossum authored
Avoid depending on this in the test.
-
- 26 Nov, 2002 20 commits
-
-
Fred Drake authored
-
Martin v. Löwis authored
-
Fred Drake authored
use regrtest, so it might be interesting.
-
Fred Drake authored
allow the use of any resource except bsddb, give the option "-uall,-bsddb".
-
Martin v. Löwis authored
-
Fred Drake authored
-
Gustavo Niemeyer authored
Fixed minor bug preventing documentation compilation.
-
Michael W. Hudson authored
It's odd that gcc on my ibook didn't complain about this.
-
Andrew M. Kuchling authored
This adds a --relative option to the bdist_dumb command that defaults to false; if true, the .tar.gz or .zip will be assembled using relative paths.
-
Andrew M. Kuchling authored
-
Michael W. Hudson authored
[ 635933 ] make some type attrs writable but should have been! News about the above.
-
Michael W. Hudson authored
[ 635933 ] make some type attrs writable Plus a couple of extra tests beyond what's up there. It hasn't been as carefully reviewed as it perhaps should, so all readers are encouraged, nay exhorted, to give this a close reading. There are still a couple of oddities related to assigning to __name__, but I intend to solicit python-dev's opinions on these.
-
Andrew M. Kuchling authored
-
Just van Rossum authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Martin v. Löwis authored
-
Thomas Heller authored
-
Thomas Heller authored
Mark writes in private email: "Modules listed in the registry was a dumb idea. This whole scheme can die. AFAIK, no one in the world uses it (including win32all since the last build)." (See also SF #643711)
-
Just van Rossum authored
- requires modulefinder.py to be on sys.path - does *not* work for Python.framework (yet), only for static builds
-
- 25 Nov, 2002 8 commits
-
-
Guido van Rossum authored
messages about MRO conflicts. (Tweaks here: don't print the message, but compare it with an expected string.)
-
Guido van Rossum authored
messages about MRO conflicts. (The tweaks include correcting spelling errors, some refactoring to get the name of classic classes, and a style nit or two.)
-
Tim Peters authored
-
Raymond Hettinger authored
non-true values to leak in. This threw-off equality testing which depends on the underlying dictionaries having both the same keys and values.
-
Thomas Heller authored
per PEP 291 (although there are currently string methods used). This patch makes it compatible with 2.2, at least, by detecting universal newline support.
-
Gustavo Niemeyer authored
Fixed minor typo, suggested by Drew Perttula <drewp@bigasterisk.com>.
-
Walter Dörwald authored
-
Gustavo Niemeyer authored
[#495695] webbrowser.py: selection of browser * Lib/webbrowser.py Only include graphic browsers in _tryorder if DISPLAY is set. Also, included skipstone support, as suggested by Fred in the mentioned bug. * Misc/NEWS Mention fix and skipstone inclusion.
-