Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch by Charles G. Waldman to add optional user and password | Guido van Rossum | 1997-10-20 | 1 | -1/+10 |
| | | | | arguments to NNTP.__init__(), for nntp servers that need them. | ||||
* | Remove .pyo files like .pyc files. | Guido van Rossum | 1997-10-20 | 1 | -1/+1 |
| | |||||
* | Added separate tests for {}.get(). | Guido van Rossum | 1997-10-20 | 1 | -0/+3 |
| | |||||
* | Added tests of dict.get() | Barry Warsaw | 1997-10-20 | 1 | -0/+6 |
| | |||||
* | splitpasswd(): The parameter is named "user", not "host". | Fred Drake | 1997-10-14 | 1 | -1/+1 |
| | |||||
* | Open files in binary mode (Jack) | Guido van Rossum | 1997-10-08 | 1 | -1/+1 |
| | |||||
* | Use better timer on the mac | Guido van Rossum | 1997-10-08 | 1 | -1/+18 |
| | | | | | Open files in binary mode (Jack) | ||||
* | Allow open file as parameter (must be seekable) (Jack) | Guido van Rossum | 1997-10-08 | 1 | -4/+10 |
| | |||||
* | Change test for re.sub() involving g<...> to use a multi-character | Guido van Rossum | 1997-10-08 | 1 | -1/+1 |
| | | | | | identifier. The previous re.py had a bug that wouldn't show up with single-char identifier... | ||||
* | Checking in AMK's latest installement. | Guido van Rossum | 1997-10-08 | 1 | -193/+0 |
| | |||||
* | Use `...` around binary strings. | Guido van Rossum | 1997-10-07 | 1 | -1/+1 |
| | |||||
* | Remove this pathetic little module! | Fred Drake | 1997-10-07 | 1 | -241/+0 |
| | |||||
* | Temporary fix to valid_identifier(). | Guido van Rossum | 1997-10-07 | 1 | -8/+7 |
| | |||||
* | Return the error code from most commands, rather than swallowing it. | Guido van Rossum | 1997-10-07 | 1 | -16/+25 |
| | | | | | Adapted the example (lying slightly about the string printed by login()). | ||||
* | Fix join to support multiple arguments. | Guido van Rossum | 1997-10-07 | 1 | -9/+12 |
| | | | | (Why isn't this file identical to ntpath.py?) | ||||
* | Add XXX note about wanting support for copy_reg.py... | Guido van Rossum | 1997-10-07 | 1 | -0/+2 |
| | |||||
* | Add Jeff Epler's interact() function. Note that it is broken. | Guido van Rossum | 1997-10-07 | 1 | -0/+52 |
| | | | | (It should probably be withdrawn :-( ) | ||||
* | Add optional arguments lo and hi to insort() and bisect(), to support | Guido van Rossum | 1997-10-07 | 1 | -4/+6 |
| | | | | using arrays containing leading or trailing garbage. | ||||
* | Reduced number of temporary names used at module scope. Use underscores in | Fred Drake | 1997-10-06 | 1 | -5/+4 |
| | | | | front of temporary names in the module namespace. | ||||
* | Reduced number of temporary names used at module scope. Use underscores in | Fred Drake | 1997-10-06 | 1 | -5/+3 |
| | | | | front of temporary names in the module namespace. | ||||
* | Don't do weird things with the "import parser"; just do it. Sheesh... | Fred Drake | 1997-10-06 | 1 | -11/+11 |
| | |||||
* | The usual (and some new modules). | Guido van Rossum | 1997-10-06 | 17 | -285/+1011 |
| | |||||
* | UserDict.get(): New method to mirror built-in dictionaries' get() | Barry Warsaw | 1997-10-06 | 1 | -0/+5 |
| | | | | method. | ||||
* | Move the __getitem__() definition from StandardException to Exception. | Fred Drake | 1997-10-06 | 1 | -1/+3 |
| | | | | | | | | | This allows stuff like this out of the box: try: ... except socket.error, (code, msg): ... | ||||
* | New "re" regular expression support. | Guido van Rossum | 1997-10-06 | 2 | -1145/+1575 |
| | | | | | | The new re module was written by Andrew Kuchling and uses the pcre code in ../Modules/. The old re module has been renamed to re1, just in case you need it for comparison. | ||||
* | Turns out whatsound.py and sndhdr.py were identical modules. | Guido van Rossum | 1997-10-04 | 2 | -540/+2 |
| | | | | | | Since there's also an imghdr.py file, I propose to make sndhdr.py the official one. For compatibility, whatsound.py imports * from sndhdr.py. | ||||
* | Fix path search for test data file so it works under more circumstances. | Guido van Rossum | 1997-10-01 | 1 | -1/+6 |
| | |||||
* | There was actually a test that ensured that raising an exception A | Guido van Rossum | 1997-10-01 | 1 | -3/+2 |
| | | | | | | | with an instance of a derived class B would really raise an A, not a B. Since Barry fixed this anomalous behaviour, I though I might as well fix the test! (Hmm, Barry, did you not run the tests or did you miss that test_opcodes failed?) | ||||
* | Fixed test for socket.error to work when it's a class exception. | Guido van Rossum | 1997-10-01 | 1 | -1/+2 |
| | |||||
* | Handy utility to guess MIME type from extension. | Guido van Rossum | 1997-09-30 | 1 | -0/+190 |
| | |||||
* | Move Widget.config() c.s. to Misc class, so the Tk class also inherits them. | Guido van Rossum | 1997-09-29 | 1 | -31/+30 |
| | |||||
* | Use sys.exc_info() where needed. | Guido van Rossum | 1997-09-29 | 1 | -44/+106 |
| | | | | Use "re" module, making it threadsafe. | ||||
* | Use sys.exc_info() where needed. | Guido van Rossum | 1997-09-29 | 9 | -32/+38 |
| | |||||
* | No longer need to be very careful with saving the exception state | Guido van Rossum | 1997-09-29 | 1 | -2/+1 |
| | | | | | first. Don't store the traceback as a local variable, to avoid circular references. | ||||
* | Removing emacs.py, which is obsolete. | Guido van Rossum | 1997-09-29 | 1 | -18/+0 |
| | |||||
* | Add optional bufsize argument to various calls so we can make the | Guido van Rossum | 1997-09-29 | 1 | -8/+8 |
| | | | | | | | os.fdopen() calls unbuffered. I presume that it's enough if we can make all three of them (for stdin, stdout, and stderr) unbuffered and don't need to specify different buffer sizes per file -- that would complicate the interface more than I care for. | ||||
* | Use Marc Lemburg's tb_lineno() to calculate the correct line number. | Guido van Rossum | 1997-09-26 | 1 | -3/+21 |
| | | | | | | Apparently the traceback object doesn't contains the right linenumber when -O is used. Rather than guessing whether -O is on or off, use tb_lineno() unconditionally. | ||||
* | Word completion for the new readline.set_completer() function. | Guido van Rossum | 1997-09-26 | 1 | -0/+108 |
| | | | | | | | | | | | | | | When completing a simple identifier, it completes keywords, built-ins and globals in __main__; when completing NAME.NAME..., it evaluates (!) the expression up to the last dot and completes its attributes. It's very cool to do "import string" type "string.", hit the completion key (twice), and see the list of names defined by the string module! Tip: to use the tab key as the completion key, call readline.parse_and_bind("tab: complete") | ||||
* | The command can now either be a string (as before) or a list of | Guido van Rossum | 1997-09-18 | 1 | -3/+4 |
| | | | | | arguments for execvp (for those who don't want the shell's argument parsing). | ||||
* | NumberError => ArithmeticError | Barry Warsaw | 1997-09-16 | 1 | -5/+5 |
| | |||||
* | Two subtle changes: | Guido van Rossum | 1997-09-16 | 1 | -69/+56 |
| | | | | | | | (1) Introduce Exception as the conceptual root class for all exceptions. (2) Do less work in __init__(), and more in __str__ (store args unchanged). | ||||
* | Entirely rewritten parseaddr() function by Sjoerd Mullender. | Guido van Rossum | 1997-09-15 | 1 | -53/+92 |
| | | | | (Includes a patch he sent me a few days later.) | ||||
* | Added code to emit trailing ',' for singleton tuples in two places. | Guido van Rossum | 1997-09-14 | 1 | -1/+7 |
| | |||||
* | Three independent changes: | Guido van Rossum | 1997-09-12 | 1 | -5/+10 |
| | | | | | | | | | - Don't use "from copy_reg import *". - Use cls.__module__ instead of calling whichobject(cls, cls.__name__); also try __module__ in whichmodule(), just in case. - After calling save_reduce(), add the object to the memo. | ||||
* | #Added doc string. | Guido van Rossum | 1997-09-09 | 1 | -1/+8 |
| | |||||
* | Make functionality more closely the same as what's implemented by default. | Guido van Rossum | 1997-09-09 | 1 | -8/+12 |
| | |||||
* | *** empty log message *** | Guido van Rossum | 1997-09-09 | 1 | -0/+115 |
| | |||||
* | Renamed platform specific subdirectories to plat-*. | Guido van Rossum | 1997-09-09 | 96 | -16133/+0 |
| | |||||
* | Renamed dos_8x3 to dos-8x3. | Guido van Rossum | 1997-09-09 | 61 | -8526/+0 |
| | |||||
* | These directories renamed: tkinter -> lib-tk, stdwin -> lib-stdwin. | Guido van Rossum | 1997-09-09 | 46 | -6876/+0 |
| |