summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Added an attribute string_id_to_buffer, which gives the offset youJack Jansen1997-04-031-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 (withJack Jansen1997-04-031-27/+57
| | | | | textual messages) - Plugged a memory leak or two
* Still not a real test, but at least it runs againJack Jansen1997-04-031-17/+26
|
* Use MacOS.string_id_to_buffer for id() to buffer address hackJack Jansen1997-04-031-1/+2
|
* Use MacOS.string_id_to_buffer for the hack to convert string id() toJack Jansen1997-04-031-1/+2
| | | | buffer address.
* Checked in some new Tk demos that I wrote a while ago.Guido van Rossum1997-04-034-0/+1047
|
* Small grammatical touchups:Fred Drake1997-04-022-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 Rossum1997-04-0252-434/+2276
|
* use /usr/bin/envGuido van Rossum1997-04-021-1/+1
|
* Added replace() implementation by Perry Stoll (debugged and reformatted by me).Guido van Rossum1997-04-021-1/+167
|
* Spell Unix, not UNIX.Guido van Rossum1997-04-022-2/+2
|
* Horrible hack to split up code '--' to preventGuido van Rossum1997-04-022-4/+8
| | | | latex2html from collapsing it into '-'.
* Add complex().Guido van Rossum1997-04-022-10/+60
| | | | Update int(), long(), float() to support string conversions.
* Add cross-refs for int() to atoi() etc.Guido van Rossum1997-04-022-30/+28
| | | | Change replace() arguments; remove replace1().
* Changed my mind on replace().Guido van Rossum1997-04-022-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 Rossum1997-04-021-0/+2
|
* New doc strings.Guido van Rossum1997-04-021-1/+6
|
* Fix two small bugs with proxies.Guido van Rossum1997-04-021-1/+2
|
* New symbols due to assert statement.Guido van Rossum1997-04-021-32/+33
|
* New test output for test_builtinGuido van Rossum1997-04-021-0/+1
|
* Win32 precision clock() -- Mark Hammond.Guido van Rossum1997-04-021-1/+44
|
* Support include statement :-(Guido van Rossum1997-04-021-0/+1
|
* Support assert stmt.Guido van Rossum1997-04-021-1/+32
|
* Several fixes reported by jim F.Guido van Rossum1997-04-021-31/+28
|
* Allow passing a .pyo file.Guido van Rossum1997-04-021-5/+8
| | | | Print correct name in fatal error from PyErr_Print.
* Added assert statement.Guido van Rossum1997-04-021-0/+45
|
* Added assert grammar.Guido van Rossum1997-04-022-526/+555
|
* Allow leading underscore in keywords.Guido van Rossum1997-04-021-1/+1
|
* Added AssertionError.Guido van Rossum1997-04-021-0/+1
|
* Added __assert__ statement (later to be renamed)Guido van Rossum1997-04-021-1/+2
|
* Optimized the hell out of listmessages().Guido van Rossum1997-04-021-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 Rossum1997-04-011-5/+2
| | | | Add __members__ attribute.
* Remove ConflictError (which was also removed from bltinmodule.c, evenGuido van Rossum1997-03-311-1/+0
| | | | though the checkin message failed to note that).
* remove ConflictErrorGuido van Rossum1997-03-311-1/+0
|
* Remove ConflictError, add InteractiveFlag, CObject_Type, FdIsInteractive, ↵Guido van Rossum1997-03-311-2/+8
| | | | and thread entry points.
* 1. Add string conversions to int(), long(), float(). (Not to complex()!)Guido van Rossum1997-03-311-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 Rossum1997-03-311-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 Rossum1997-03-272-4/+54
|
* Added docs for UserDict,UserListGuido van Rossum1997-03-277-1/+64
|
* Added docs for glob and mailcapGuido van Rossum1997-03-252-0/+4
|
* Added docs for globGuido van Rossum1997-03-257-5/+77
|
* Added docs for mailcapGuido van Rossum1997-03-257-5/+157
|
* Change by Andrew Kuchling (edited by Guido):Guido van Rossum1997-03-251-17/+32
| | | | | | Removed unused import tempfile. Added some docstrings.
* Added two new questions about number conversions.Guido van Rossum1997-03-251-0/+23
|
* As per GvR recomendation, added support for a 'sync' attribute for theRoger E. Masse1997-03-251-0/+18
| | | | GDBM module.
* Added new functions replace() and replace1().Guido van Rossum1997-03-252-0/+30
|
* Added docs for replace() and replace1().Guido van Rossum1997-03-252-0/+26
|
* Added a 'sync' method to shelve. If the underlying database does not have a ↵Roger E. Masse1997-03-251-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 namesGuido van Rossum1997-03-252-4/+4
| | | | passed to walk() visitor.
* Add clear() method to dictionary objects.Guido van Rossum1997-03-212-0/+26
|