- 27 Kas, 2002 18 kayıt (commit)
-
-
Greg Ward yazdı
consistency with the built-in open() (and every other sane open() function, for that matter). The two valid ways to call this open() are now open(mode) and open(device, mode). For backwards compatibility, retain the old open(mode) calling syntax -- this makes the error message when you call open(device) a bit confusing, but oh well. This is the first half of SF patch #644977.
-
Neal Norwitz yazdı
-
Andrew M. Kuchling yazdı
Various edits
-
Andrew M. Kuchling yazdı
-
Michael W. Hudson yazdı
the results of *setting* __name__ are not so surprising. If people can suggest more tests, that'd be grand, or is what's there sufficient?
-
Neal Norwitz yazdı
Convert test/README to reST
-
Michael W. Hudson yazdı
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 yazdı
mro() methods. Now any exception aborts the whole __bases__ change. And more tests.
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
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 yazdı
Fill in the missing details. (From Jack Jansen)
-
Guido van Rossum yazdı
-
Michael W. Hudson yazdı
-
Martin v. Löwis yazdı
-
Raymond Hettinger yazdı
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 yazdı
method for constructing new dictionaries from sequences of keys.
-
Fred Drake yazdı
new-style classes. Closes SF bug #637941.
-
Guido van Rossum yazdı
Avoid depending on this in the test.
-
- 26 Kas, 2002 20 kayıt (commit)
-
-
Fred Drake yazdı
-
Martin v. Löwis yazdı
-
Fred Drake yazdı
use regrtest, so it might be interesting.
-
Fred Drake yazdı
allow the use of any resource except bsddb, give the option "-uall,-bsddb".
-
Martin v. Löwis yazdı
-
Fred Drake yazdı
-
Gustavo Niemeyer yazdı
Fixed minor bug preventing documentation compilation.
-
Michael W. Hudson yazdı
It's odd that gcc on my ibook didn't complain about this.
-
Andrew M. Kuchling yazdı
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 yazdı
-
Michael W. Hudson yazdı
[ 635933 ] make some type attrs writable but should have been! News about the above.
-
Michael W. Hudson yazdı
[ 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 yazdı
-
Just van Rossum yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Martin v. Löwis yazdı
-
Thomas Heller yazdı
-
Thomas Heller yazdı
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 yazdı
- requires modulefinder.py to be on sys.path - does *not* work for Python.framework (yet), only for static builds
-
- 25 Kas, 2002 2 kayıt (commit)
-
-
Guido van Rossum yazdı
messages about MRO conflicts. (Tweaks here: don't print the message, but compare it with an expected string.)
-
Guido van Rossum yazdı
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.)
-