Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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. | ||||
* | Add cross-refs for int() to atoi() etc. | Guido van Rossum | 1997-04-02 | 2 | -30/+28 |
| | | | | Change replace() arguments; remove replace1(). | ||||
* | Changed my mind on replace(). | Guido van Rossum | 1997-04-02 | 2 | -24/+4 |
| | | | | | | It's now replace(str, old, new, maxsplit=0). Note new ordering of parameters (string first); this is more consistent with translate(). | ||||
* | Add #! line. | Guido van Rossum | 1997-04-02 | 1 | -0/+2 |
| | |||||
* | New doc strings. | Guido van Rossum | 1997-04-02 | 1 | -1/+6 |
| | |||||
* | Fix two small bugs with proxies. | Guido van Rossum | 1997-04-02 | 1 | -1/+2 |
| | |||||
* | New symbols due to assert statement. | Guido van Rossum | 1997-04-02 | 1 | -32/+33 |
| | |||||
* | New test output for test_builtin | Guido van Rossum | 1997-04-02 | 1 | -0/+1 |
| | |||||
* | Win32 precision clock() -- Mark Hammond. | Guido van Rossum | 1997-04-02 | 1 | -1/+44 |
| | |||||
* | Support include statement :-( | Guido van Rossum | 1997-04-02 | 1 | -0/+1 |
| | |||||
* | Support assert stmt. | Guido van Rossum | 1997-04-02 | 1 | -1/+32 |
| | |||||
* | Several fixes reported by jim F. | Guido van Rossum | 1997-04-02 | 1 | -31/+28 |
| | |||||
* | Allow passing a .pyo file. | Guido van Rossum | 1997-04-02 | 1 | -5/+8 |
| | | | | Print correct name in fatal error from PyErr_Print. | ||||
* | Added assert statement. | Guido van Rossum | 1997-04-02 | 1 | -0/+45 |
| | |||||
* | Added assert grammar. | Guido van Rossum | 1997-04-02 | 2 | -526/+555 |
| | |||||
* | Allow leading underscore in keywords. | Guido van Rossum | 1997-04-02 | 1 | -1/+1 |
| | |||||
* | Added AssertionError. | Guido van Rossum | 1997-04-02 | 1 | -0/+1 |
| | |||||
* | Added __assert__ statement (later to be renamed) | Guido van Rossum | 1997-04-02 | 1 | -1/+2 |
| | |||||
* | Optimized the hell out of listmessages(). | Guido van Rossum | 1997-04-02 | 1 | -10/+8 |
| | | | | | Changed numericprog regexpr to make it faster to check. Removed now unnecessary checks for os.curdir, os.pardir. | ||||
* | Get rid of .conj pseudo data attribute for complex numbers. | Guido van Rossum | 1997-04-01 | 1 | -5/+2 |
| | | | | Add __members__ attribute. | ||||
* | Remove ConflictError (which was also removed from bltinmodule.c, even | Guido van Rossum | 1997-03-31 | 1 | -1/+0 |
| | | | | though the checkin message failed to note that). | ||||
* | remove ConflictError | Guido van Rossum | 1997-03-31 | 1 | -1/+0 |
| | |||||
* | Remove ConflictError, add InteractiveFlag, CObject_Type, FdIsInteractive, ↵ | Guido van Rossum | 1997-03-31 | 1 | -2/+8 |
| | | | | and thread entry points. | ||||
* | 1. Add string conversions to int(), long(), float(). (Not to complex()!) | Guido van Rossum | 1997-03-31 | 1 | -7/+127 |
| | | | | | | | | | | 2. Fix two bugs in complex(): - Memory leak when using complex(classinstance) -- r was never DECREF'ed. - Conversion of the second argument, if not complex, was done using the type vector of the 1st. | ||||
* | Added test of complex() (that catches a bug in 1.4!). | Guido van Rossum | 1997-03-31 | 1 | -0/+39 |
| | | | | | Added test that ensures that int() and long() truncate float numbers towards zero. | ||||
* | Added a list of the main undocumented extension modules. | Guido van Rossum | 1997-03-27 | 2 | -4/+54 |
| | |||||
* | Added docs for UserDict,UserList | Guido van Rossum | 1997-03-27 | 7 | -1/+64 |
| | |||||
* | Added docs for glob and mailcap | Guido van Rossum | 1997-03-25 | 2 | -0/+4 |
| | |||||
* | Added docs for glob | Guido van Rossum | 1997-03-25 | 7 | -5/+77 |
| | |||||
* | Added docs for mailcap | Guido van Rossum | 1997-03-25 | 7 | -5/+157 |
| | |||||
* | Change by Andrew Kuchling (edited by Guido): | Guido van Rossum | 1997-03-25 | 1 | -17/+32 |
| | | | | | | Removed unused import tempfile. Added some docstrings. | ||||
* | Added two new questions about number conversions. | Guido van Rossum | 1997-03-25 | 1 | -0/+23 |
| | |||||
* | As per GvR recomendation, added support for a 'sync' attribute for the | Roger E. Masse | 1997-03-25 | 1 | -0/+18 |
| | | | | GDBM module. | ||||
* | Added new functions replace() and replace1(). | Guido van Rossum | 1997-03-25 | 2 | -0/+30 |
| | |||||
* | Added docs for replace() and replace1(). | Guido van Rossum | 1997-03-25 | 2 | -0/+26 |
| | |||||
* | Added a 'sync' method to shelve. If the underlying database does not have a ↵ | Roger E. Masse | 1997-03-25 | 1 | -0/+4 |
| | | | | | | sync attribute, this method silently ignores this fact. The default (bsddb's dbhash) does. | ||||
* | Remove untrue statement about . and .. being included in list of names | Guido van Rossum | 1997-03-25 | 2 | -4/+4 |
| | | | | passed to walk() visitor. | ||||
* | Add clear() method to dictionary objects. | Guido van Rossum | 1997-03-21 | 2 | -0/+26 |
| |