| Commit message (Expand) | Author | Age | Files | Lines |
* | The new imp.[gs]et_frozenmodules() will be utterly redundant if the | Just van Rossum | 2002-12-01 | 1 | -1/+2 |
|
|
* | Add ossaudiodev; fix typo | Andrew M. Kuchling | 2002-12-01 | 1 | -1/+7 |
|
|
* | Expunge any remaining mentions of linuxaudiodev -- it's ossaudiodev now! | Greg Ward | 2002-11-30 | 1 | -7/+7 |
|
|
* | Rename LinuxAudioError to OSSAudioError ('ossaudiodev.error'). | Greg Ward | 2002-11-30 | 1 | -25/+25 |
|
|
* | Added mode 'rw' for full-duplex (play and record at the same time) mode. | Greg Ward | 2002-11-30 | 1 | -21/+97 |
|
|
* | * Don't put the device in non-blocking mode at open() time; this makes | Greg Ward | 2002-11-30 | 1 | -46/+184 |
|
|
* | ossaudiodev -- Python interface to the OSS (Open Sound System) API. | Greg Ward | 2002-11-30 | 1 | -0/+524 |
|
|
* | - found a case where sys.path[0] isn't set to Contents/Resources, | Just van Rossum | 2002-11-30 | 1 | -2/+8 |
|
|
* | Cleanup: | Neal Norwitz | 2002-11-30 | 1 | -9/+5 |
|
|
* | Remove unused import | Neal Norwitz | 2002-11-30 | 1 | -5/+6 |
|
|
* | Convert string exceptions to classes, string exceptions are deprecated | Neal Norwitz | 2002-11-30 | 2 | -8/+16 |
|
|
* | Convert some more 1/0 to True/False | Neal Norwitz | 2002-11-30 | 2 | -14/+14 |
|
|
* | Add missing self for method call | Neal Norwitz | 2002-11-30 | 1 | -2/+2 |
|
|
* | Port Martin von Loewis checkin from Python: | Neal Norwitz | 2002-11-30 | 1 | -5/+24 |
|
|
* | Port Martin von Loewis checkin from python: Support sdist. | Neal Norwitz | 2002-11-30 | 1 | -0/+4 |
|
|
* | M PyShell.py | Kurt B. Kaiser | 2002-11-30 | 2 | -17/+20 |
|
|
* | getdoc(): | Ka-Ping Yee | 2002-11-30 | 2 | -7/+15 |
|
|
* | Lots of minor tweaks for the pep252 checkins, mainly because Qd | Jack Jansen | 2002-11-30 | 25 | -61/+60 |
|
|
* | Build _AE too. | Jack Jansen | 2002-11-29 | 1 | -0/+4 |
|
|
* | Converted the Carbon modules to use PEP252-style objects, with | Jack Jansen | 2002-11-29 | 48 | -2507/+2447 |
|
|
* | Correct an error introduced at Rev 1.30. The keyword arg is necessary | Kurt B. Kaiser | 2002-11-29 | 1 | -6/+8 |
|
|
* | Forgot to do os.path.basename() on mainprogram: a nonworking app was built if... | Just van Rossum | 2002-11-29 | 1 | -7/+6 |
|
|
* | Slightly improved version of patch #642578: "Expose PyImport_FrozenModules | Just van Rossum | 2002-11-29 | 3 | -0/+167 |
|
|
* | added Thomas H's LOADER code for importing extension (sub)modules; little tweaks | Just van Rossum | 2002-11-29 | 1 | -21/+27 |
|
|
* | Fix mode on scripts to have the read bit set (noted by Nicholas Riley) | Andrew M. Kuchling | 2002-11-29 | 1 | -1/+1 |
|
|
* | Fix value of 'propagate' (noted by Chris Reedy) | Andrew M. Kuchling | 2002-11-29 | 1 | -8/+10 |
|
|
* | Fix typo. | Walter Dörwald | 2002-11-29 | 1 | -1/+1 |
|
|
* | Fixed two silly bugs in the PEP252 support code, added an assert | Jack Jansen | 2002-11-28 | 1 | -3/+10 |
|
|
* | fixed typo and wrapping | Just van Rossum | 2002-11-28 | 1 | -1/+2 |
|
|
* | - Rewrote bootstapping code in sh so we're really independent of an | Just van Rossum | 2002-11-28 | 1 | -40/+54 |
|
|
* | Allow the device name to be passed to linuxaudiodev.open(), for | Greg Ward | 2002-11-27 | 1 | -7/+19 |
|
|
* | Add missing decref | Neal Norwitz | 2002-11-27 | 1 | -0/+1 |
|
|
* | Mention dict.fromkeys() | Andrew M. Kuchling | 2002-11-27 | 1 | -18/+29 |
|
|
* | Update e-mail address | Andrew M. Kuchling | 2002-11-27 | 3 | -3/+3 |
|
|
* | Nudge getting __module__ and __name__ for new-style classes so that | Michael W. Hudson | 2002-11-27 | 2 | -18/+33 |
|
|
* | SF #641170, reST version of Lib/test/README | Neal Norwitz | 2002-11-27 | 1 | -89/+99 |
|
|
* | I don't know why staring at the email to python-checkins made me | Michael W. Hudson | 2002-11-27 | 2 | -9/+16 |
|
|
* | Readjustments to the way we cope with exceptions from subclasses' | Michael W. Hudson | 2002-11-27 | 2 | -12/+111 |
|
|
* | [Part of patch #641685] Add .dylib as an extension for shared libraries | Andrew M. Kuchling | 2002-11-27 | 1 | -1/+1 |
|
|
* | [Patch #641685] setup.py contained code for finding libraries, instead | Andrew M. Kuchling | 2002-11-27 | 1 | -8/+24 |
|
|
* | Bug #643631: MacOS 9 details missing from inst.tex | Andrew M. Kuchling | 2002-11-27 | 1 | -18/+7 |
|
|
* | Rephrase dict.fromkeys() news. | Guido van Rossum | 2002-11-27 | 1 | -4/+5 |
|
|
* | I had the inheritance cycle stuff backwards. Oops! | Michael W. Hudson | 2002-11-27 | 2 | -4/+14 |
|
|
* | Patch #639112: fixes for None locale and tz. | Martin v. Löwis | 2002-11-27 | 2 | -61/+154 |
|
|
* | Bring UserDict in-sync with changes to dict. | Raymond Hettinger | 2002-11-27 | 2 | -6/+25 |
|
|
* | SF Patch 643443. Added dict.fromkeys(iterable, value=None), a class | Raymond Hettinger | 2002-11-27 | 4 | -1/+97 |
|
|
* | Clarify the interpretation of the __getstate__() return value for | Fred Drake | 2002-11-27 | 1 | -3/+9 |
|
|
* | The MRO conflict error message depends on dictionary hash order. | Guido van Rossum | 2002-11-27 | 1 | -4/+4 |
|
|
* | Add missing dependency information for the "What's New" document. | Fred Drake | 2002-11-26 | 1 | -2/+2 |
|
|
* | Avoid including tclInt.h. | Martin v. Löwis | 2002-11-26 | 1 | -10/+26 |
|
|