Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bugfix by Sjoerd: | Guido van Rossum | 1997-04-11 | 1 | -1/+5 |
| | | | | | /* x_ocount is in bytes, wheras play.samples is in frames */ /* we want frames */ | ||||
* | base64 support by Sjoerd. | Guido van Rossum | 1997-04-11 | 1 | -11/+25 |
| | |||||
* | Added note about SWIG (replacing a whole lot of nonsense about how | Guido van Rossum | 1997-04-11 | 1 | -27/+10 |
| | | | | difficult it is to do). | ||||
* | Use uuencoded test images. | Guido van Rossum | 1997-04-09 | 7 | -166/+3333 |
| | |||||
* | Don't just die when an error is not defined; print a warning instead. | Guido van Rossum | 1997-04-09 | 1 | -4/+9 |
| | | | | This for errno-challenged platforms like Windows. | ||||
* | Try calling getpid() from /usr/lib/libc.so instead of some other | Guido van Rossum | 1997-04-09 | 1 | -4/+1 |
| | | | | random things. | ||||
* | Use TESTFN instead of /etc/passwd and /dev/null as test files. | Guido van Rossum | 1997-04-09 | 1 | -5/+12 |
| | |||||
* | Tweaks to keep the Microsoft compiler quiet. | Guido van Rossum | 1997-04-09 | 5 | -18/+18 |
| | |||||
* | Tweaks to keep the Microsoft compiler quier. | Guido van Rossum | 1997-04-09 | 8 | -19/+36 |
| | |||||
* | Remove unused variable. | Guido van Rossum | 1997-04-09 | 1 | -1/+0 |
| | |||||
* | Remove two unised variables. | Guido van Rossum | 1997-04-09 | 1 | -2/+0 |
| | |||||
* | Got rid of the static decl of PyCObject_Import, which was a 1.4 | Guido van Rossum | 1997-04-09 | 1 | -19/+4 |
| | | | | compatibility hack. | ||||
* | Give PyErr_Format a new name and make it static. | Guido van Rossum | 1997-04-09 | 1 | -0/+5 |
| | |||||
* | support module for cPickle | Guido van Rossum | 1997-04-09 | 1 | -0/+17 |
| | |||||
* | Jim Fulton's version 2.2. | Guido van Rossum | 1997-04-09 | 1 | -2810/+2931 |
| | |||||
* | Unknown changes by Jim Fulton. | Guido van Rossum | 1997-04-09 | 1 | -199/+140 |
| | |||||
* | Changed the way the C API was exported. Jim Fulton. | Guido van Rossum | 1997-04-09 | 1 | -39/+47 |
| | |||||
* | New version by Digital Creations, supports binary format compatible | Guido van Rossum | 1997-04-09 | 1 | -427/+785 |
| | | | | with cPickle. | ||||
* | Ping's latest. Fixes triple quoted strings ending in odd | Guido van Rossum | 1997-04-09 | 1 | -20/+31 |
| | | | | #backslashes, and other stuff I don't know. | ||||
* | NewMovieFromFile has extra parameter and return value | Jack Jansen | 1997-04-09 | 2 | -2/+2 |
| | |||||
* | Enabled resID input/output parameter to NewMovieFromFile. This changes | Jack Jansen | 1997-04-09 | 3 | -13/+192 |
| | | | | | the Python interface, unfortunately. Added a few calls that were blacklisted for no apparent reason. | ||||
* | while (1) -> while 1. Sorry. | Guido van Rossum | 1997-04-08 | 1 | -1/+1 |
| | |||||
* | Search for a valid begin line instead of requiring the first line. | Guido van Rossum | 1997-04-08 | 1 | -9/+16 |
| | |||||
* | (Optional) MSL compatability | Jack Jansen | 1997-04-08 | 1 | -0/+4 |
| | |||||
* | DisposPtr -> DisposePtr | Jack Jansen | 1997-04-08 | 1 | -1/+1 |
| | |||||
* | Changed the few old routine names still used to the new ones | Jack Jansen | 1997-04-08 | 3 | -9/+14 |
| | | | | Started working on MSL support | ||||
* | Changed [SG]etCRefCon to [SG]etControlReference | Jack Jansen | 1997-04-08 | 2 | -7/+7 |
| | |||||
* | Modified for (optional) use of MSL | Jack Jansen | 1997-04-08 | 1 | -2/+4 |
| | |||||
* | Fixed for compiling without OLDROUTINENAMES and OLDROUTINELOCATIONS | Jack Jansen | 1997-04-08 | 2 | -6/+6 |
| | |||||
* | Ka-Ping's muich improved version of March 26, 1997: | Guido van Rossum | 1997-04-08 | 1 | -74/+98 |
| | | | | | | # Ignore now accepts \f as whitespace. Operator now includes '**'. # Ignore and Special now accept \n or \r\n at the end of a line. # Imagnumber is new. Expfloat is corrected to reject '0e4'. | ||||
* | Support for alternative string quotes (a"xx", b"xx", c"xx", ...). | Guido van Rossum | 1997-04-06 | 1 | -4/+9 |
| | |||||
* | Support for alternative string quotes (a"xx", b"xx", c"xx", ...). | Guido van Rossum | 1997-04-06 | 1 | -3/+6 |
| | | | | In interactive mode, do generate code for single-string statements. | ||||
* | Various status updates. | Guido van Rossum | 1997-04-03 | 2 | -42/+12 |
| | |||||
* | Added site | Guido van Rossum | 1997-04-03 | 2 | -0/+6 |
| | |||||
* | New stuff by AMK. | Guido van Rossum | 1997-04-03 | 19 | -41/+401 |
| | |||||
* | Remove a redundant XINCREF(value). This caused the reference count of | Guido van Rossum | 1997-04-03 | 1 | -1/+0 |
| | | | | | all locals to be upped by one when `from <module> import <whatever>' was executed. | ||||
* | New version by Sjoerd, with support for IRIX 6 audio library. | Guido van Rossum | 1997-04-03 | 1 | -340/+3035 |
| | |||||
* | Added an attribute string_id_to_buffer, which gives the offset you | Jack Jansen | 1997-04-03 | 1 | -0/+12 |
| | | | | | | | | have to add to the id() of a string to get the address of the data. This is a horrible and error-prone hack, but unfortunately it is one that is needed for playing audio and crearing pixmaps. Having the constant here is at least marginally better than the previous practice of having the constant 16 all over the place... | ||||
* | - Most errors are *not* OSErr style, so raise better exceptions (with | Jack Jansen | 1997-04-03 | 1 | -27/+57 |
| | | | | | textual messages) - Plugged a memory leak or two | ||||
* | Still not a real test, but at least it runs again | Jack Jansen | 1997-04-03 | 1 | -17/+26 |
| | |||||
* | Use MacOS.string_id_to_buffer for id() to buffer address hack | Jack Jansen | 1997-04-03 | 1 | -1/+2 |
| | |||||
* | Use MacOS.string_id_to_buffer for the hack to convert string id() to | Jack Jansen | 1997-04-03 | 1 | -1/+2 |
| | | | | buffer address. | ||||
* | Checked in some new Tk demos that I wrote a while ago. | Guido van Rossum | 1997-04-03 | 4 | -0/+1047 |
| | |||||
* | Small grammatical touchups: | Fred Drake | 1997-04-02 | 2 | -6/+6 |
| | | | | | | | | | | | | | Para. 1: ...that reads and writes a string buffer... ^ ^ Para. 3: ...can be called at any time to retrieve the... XXXXXXXXXXXX ^^^^^ ...entire contents of the entire ``file'' ... ^^^^^^^ XXXXXXX Guido, I hope I'm not stomping too far afield, but these seem pretty clear to me. | ||||
* | Whole lotta changes. | Guido van Rossum | 1997-04-02 | 52 | -434/+2276 |
| | |||||
* | use /usr/bin/env | Guido van Rossum | 1997-04-02 | 1 | -1/+1 |
| | |||||
* | Added replace() implementation by Perry Stoll (debugged and reformatted by me). | Guido van Rossum | 1997-04-02 | 1 | -1/+167 |
| | |||||
* | Spell Unix, not UNIX. | Guido van Rossum | 1997-04-02 | 2 | -2/+2 |
| | |||||
* | Horrible hack to split up code '--' to prevent | Guido van Rossum | 1997-04-02 | 2 | -4/+8 |
| | | | | latex2html from collapsing it into '-'. | ||||
* | Add complex(). | Guido van Rossum | 1997-04-02 | 2 | -10/+60 |
| | | | | Update int(), long(), float() to support string conversions. |