| Commit message (Expand) | Author | Age | Files | Lines |
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -13/+13 |
|
|
* | Issue #8139: ossaudiodev didn't initialize its types properly, therefore | Antoine Pitrou | 2010-03-23 | 1 | -1/+7 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -2/+2 |
|
|
* | fixes deferred/release blocker issue #3797: Fixed the dbm, marshal, mmap, | Gregory P. Smith | 2008-09-06 | 1 | -3/+3 |
|
|
* | Rename PyUnicode_AsString -> _PyUnicode_AsString and | Marc-André Lemburg | 2008-08-07 | 1 | -1/+1 |
|
|
* | #3247: get rid of Py_FindMethod | Amaury Forgeot d'Arc | 2008-07-02 | 1 | -10/+45 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -6/+19 |
|
|
* | Renamed PyBytes to PyByteArray | Christian Heimes | 2008-05-26 | 1 | -3/+3 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -12/+12 |
|
|
* | Use unicode | Neal Norwitz | 2007-08-26 | 1 | -11/+11 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -4/+2 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -0/+2 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 1 | -45/+20 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -4/+12 |
|
|
* | Rework channelnumber/samplesize detetion code's output variables a bit to | Thomas Wouters | 2006-03-01 | 1 | -7/+6 |
|
|
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
|
|
* | Fix icc warnings: extra semi-colon | Neal Norwitz | 2006-01-07 | 1 | -2/+2 |
|
|
* | Conditionally export a few more AFMT_* macros: AFMT_U16_NE, AFMT_S32_LE, | Greg Ward | 2005-03-28 | 1 | -0/+12 |
|
|
* | SF #818006: merge from release24-maint branch: add useful read-only | Greg Ward | 2005-03-07 | 1 | -26/+54 |
|
|
* | SF #832236: merge from release23-maint branch: wrap a bunch of | Greg Ward | 2004-05-11 | 1 | -0/+18 |
|
|
* | Whitespace normalization; break a long line. | Guido van Rossum | 2003-06-02 | 1 | -39/+40 |
|
|
* | Fix a subtle decref bug that caused a GC assertion to fail in a debug | Guido van Rossum | 2003-06-02 | 1 | -0/+3 |
|
|
* | Comment fix. | Greg Ward | 2003-05-29 | 1 | -1/+1 |
|
|
* | Change _ssize() so it doesn't rely on sizeof(char) or sizeof(short): | Greg Ward | 2003-05-29 | 1 | -2/+2 |
|
|
* | Completely change the interface to setparameters(): | Greg Ward | 2003-05-29 | 1 | -79/+48 |
|
|
* | Oops, move the GIL release/reacquire from oss_sync() to _do_ioctl_0(): | Greg Ward | 2003-05-27 | 1 | -7/+11 |
|
|
* | Release the GIL in two more methods: | Greg Ward | 2003-05-26 | 1 | -1/+8 |
|
|
* | Release the GIL around read(), write(), and select() calls. | Greg Ward | 2003-05-23 | 1 | -2/+16 |
|
|
* | Use fcntl() to put the audio device *back* into blocking mode after | Greg Ward | 2003-04-04 | 1 | -0/+9 |
|
|
* | Open with O_NONBLOCK to avoid hanging on open(). | Greg Ward | 2003-03-11 | 1 | -1/+5 |
|
|
* | <sys/soundcard.h> seems to exist on both Linux and FreeBSD, so include | Greg Ward | 2003-03-10 | 1 | -22/+10 |
|
|
* | Conditionalize another constant | Andrew M. Kuchling | 2003-02-13 | 1 | -0/+2 |
|
|
* | Get ossaudiodev to compile on freebsd 4.7 | Neal Norwitz | 2003-02-02 | 1 | -0/+18 |
|
|
* | Get build working on Redhat 7.2 linux 2.4.7 | Neal Norwitz | 2003-01-10 | 1 | -0/+4 |
|
|
* | Add build_namelists() to expose the OSS macros SOUND_DEVICE_LABELS and | Greg Ward | 2002-12-31 | 1 | -0/+45 |
|
|
* | Rename the parameter 'xp' in several methods to 'self', since that's | Greg Ward | 2002-12-31 | 1 | -23/+23 |
|
|
* | For symmetry with the mixer interface, rename oss_t to oss_audio_t and | Greg Ward | 2002-12-31 | 1 | -29/+29 |
|
|
* | Add a bunch of comments to clearly delineate sections of the code. | Greg Ward | 2002-12-31 | 1 | -1/+28 |
|
|
* | Yet another renaming of some mixer methods: | Greg Ward | 2002-12-31 | 1 | -9/+9 |
|
|
* | Rename more mixer methods: getrecsrc() -> get_recsrc(), | Greg Ward | 2002-12-30 | 1 | -6/+6 |
|
|
* | Untabify. | Greg Ward | 2002-12-30 | 1 | -106/+106 |
|
|
* | Whitespace fixes to conform to coding standards. | Greg Ward | 2002-12-30 | 1 | -18/+18 |
|
|
* | Comment fix. | Greg Ward | 2002-12-30 | 1 | -9/+2 |
|
|
* | Rename some mixer methods: | Greg Ward | 2002-12-30 | 1 | -16/+16 |
|
|
* | Remove 'x_' prefix from oss_t and oss_mixer_t struct members. | Greg Ward | 2002-12-30 | 1 | -57/+58 |
|
|
* | Typo fix. | Greg Ward | 2002-12-12 | 1 | -1/+1 |
|
|
* | Add OSS mixer interface (from Nicholas FitzRoy-Dale <wzdd@lardcave.net>): | Greg Ward | 2002-12-11 | 1 | -0/+267 |
|
|
* | Prepare for the coming mixer support patch: change _do_ioctl_0() and | Greg Ward | 2002-12-11 | 1 | -14/+14 |
|
|
* | Finish expunging the 'linuxaudiodev' name: | Greg Ward | 2002-12-11 | 1 | -55/+55 |
|
|
* | Expunge any remaining mentions of linuxaudiodev -- it's ossaudiodev now! | Greg Ward | 2002-11-30 | 1 | -7/+7 |
|
|