- 30 Kas, 2002 12 kayıt (commit)
-
-
Greg Ward yazdı
This module is a replacement for linuxaudiodev, which will eventually be deprecated. Initial revision is rev 2.20 of linuxaudiodev.c, with a rewritten header comment.
-
Just van Rossum yazdı
so search the entire path. - only add modules if we're building a standalone application.
-
Neal Norwitz yazdı
* Remove unused imports * Convert some more 1/0 to True/False * Shorten up a long line
-
Neal Norwitz yazdı
Remove unused variables since they were the return value from grid(), which is always None
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
-
Neal Norwitz yazdı
Add --check-tkinter to setup.py. Install IDLE. Fixes #634078.
-
Neal Norwitz yazdı
-
Kurt B. Kaiser yazdı
M rpc.py SF Bug 629987: Idle not printing prompts following SyntaxError
-
Ka-Ping Yee yazdı
Remove leading whitespace from first line; remove leading and trailing blank lines from docstrings. (Patch 645938 submitted by David Goodger.)
-
Jack Jansen yazdı
attributes are no longer supported.
-
- 29 Kas, 2002 9 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
descriptors in stead of manual getattr hooks to get at attributes of the objects. For Qd I have in stead gotten rid of most of the attribute access in favor of the carbon-style accessor methods (with the exception of visRgn, to be done later), and of the Carbon.Qd.qd global object, for which accessor functions are also available. For List I have fixed the fact that various methods were incorrectly generated as functions. CF is untouched: PEP252 doesn't allow "poor-mans-inheritance" with basechain, so it will have to wait for PEP253 support.
-
Kurt B. Kaiser yazdı
to freeze the value of orig_checkcache. Otherwise infinite recursion.
-
Just van Rossum yazdı
Forgot to do os.path.basename() on mainprogram: a nonworking app was built if the mainprogram wan't in the current directory. Fixed.
-
Just van Rossum yazdı
in imp". This adds two functions to the imp module: get_frozenmodules() and set_frozenmodules().
-
Just van Rossum yazdı
-
Andrew M. Kuchling yazdı
-
Andrew M. Kuchling yazdı
Rewrite paragraph
-
Walter Dörwald yazdı
-
- 28 Kas, 2002 3 kayıt (commit)
-
-
Jack Jansen yazdı
that basechain isn't set, and made the output a bit prettier.
-
Just van Rossum yazdı
-
Just van Rossum yazdı
installed Python. So we don't use os.execve any longer, which means we need an actual executable in <myapp>.app/Contents/MacOS. For applets we make a symlink to the Python executable used to build the applet, for standalone apps we simply copy it. - Added support for the new any_missing_maybe() feature of modulefinder.py, which is pending as patch #643711. Its use is optional so it still works with the existing version of modulefinder.py
-
- 27 Kas, 2002 16 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.
-