- 02 Ara, 2002 10 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
- The _modules cache now uses the full module name. - The meaning of the (internal!!!) inpackage argument is changed: it now is the parent package name, or None. readmodule() doesn't support this argument any more. - The meaning of the path argument is changed: when inpackage is set, the module *must* be found in this path (as is the case for the real package search). - Miscellaneous cleanup, e.g. fixed __all__, changed some comments and doc strings, etc. - Adapted the unit tests to the new semantics (nothing much changed, really). Added some debugging code to the unit tests that print helpful extra info to stderr when a test fails (interpreting the test failures turned out to be hard without these).
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
test_sre won't die with a SegFault.
-
Kurt B. Kaiser yazdı
Modify get_stack() and get_exception to be StackTreeItem methods. SF Bug 610756. Neal Norwitz.
-
Neal Norwitz yazdı
-
Kurt B. Kaiser yazdı
Then remove annoying beep, not needed with breakpoint highlighting.
-
Neal Norwitz yazdı
-
Skip Montanaro yazdı
-
- 01 Ara, 2002 3 kayıt (commit)
-
-
Just van Rossum yazdı
or less decently/completely. - cleaned up a little.
-
Just van Rossum yazdı
zipfile import stuff get in. I'll probably back it out again.
-
Andrew M. Kuchling yazdı
-
- 30 Kas, 2002 16 kayıt (commit)
-
-
Greg Ward yazdı
-
Greg Ward yazdı
Use OSSAudioError much less frequently -- all real I/O errors (ie. any time open(), read(), write(), ioctl(), or select() return an error) become IOError. OSSAudioError is only used now for bad open() mode.
-
Greg Ward yazdı
Added _EXPORT_INT macro to export an integer constant to Python-space. Use it for all the AFMT_* constants, and update the list of AFMT_* constants to match what's in Linux 2.4: add AFMT_{QUERY,IMA_ADPCM, MPEG,AC3}. This should probably be tested with older versions of OSS, eg. with Linux 2.2 and 2.0. Export all SNDCTL_* ioctl numbers (where "all" is the set found in /usr/include/linux/soundcard.h on my Debian 3.0 system -- again Linux 2.4). Again needs to be tested with older OSS versions.
-
Greg Ward yazdı
it impossible to access blocking mode! * Rename write() to writeall(), and add a write() method that just does one write(). * Rearrange/simplify writeall(): in particular, don't supply a timeout to select(). Let it block forever if it has to. * Add a bunch of simple ioctl() wrappers: nonblock(), setfmt(), getfmts(), channels(), speed(), sync(), reset(), post(). These wrap, respectively, SNDCTL_DSP_NONBLOCK, SNDCTL_DSP_SETFMT, SNDCTL_DSP_GETFMTS, etc. * Reduce flush() (which was a wrapper for the SNDCTL_DSP_SYNC ioctl) to an alias for sync(). * Rearrange the lad_methods list to reflect the order in which the methods are defined, and add some grouping comments.
-
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 2 kayıt (commit)
-
-
Jack Jansen yazdı
that basechain isn't set, and made the output a bit prettier.
-
Just van Rossum yazdı
-