Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | /usr/local/bin/python -> /usr/bin/env python | Guido van Rossum | 1996-11-27 | 6 | -7/+11 |
| | |||||
* | Added safeguard against failure in __del__. | Guido van Rossum | 1996-11-27 | 1 | -0/+2 |
| | |||||
* | Added ALL='all'. | Guido van Rossum | 1996-11-20 | 2 | -0/+2 |
| | |||||
* | Turn leading minus sign into underscore for image widget name -- the | Guido van Rossum | 1996-11-20 | 2 | -6/+10 |
| | | | | hyphen confused Tk into thinking the name was an option. | ||||
* | Added support for timezone in date field. getdate_tz() and | Guido van Rossum | 1996-11-20 | 1 | -6/+57 |
| | | | | | parsedate_tz() return a 10-tuple, the last field is the tz offset in seconds (e.g. -18000 or -5 hours for EST). | ||||
* | When re-raising an exception raised by a module used internally as | Guido van Rossum | 1996-11-20 | 1 | -3/+5 |
| | | | | IOError, keep the traceback. | ||||
* | When removing a messge from all sequences, don't remove from 'cur', | Guido van Rossum | 1996-11-12 | 1 | -0/+3 |
| | | | | which needs to stay unless explicitly set. | ||||
* | Added 'strict_parsing' option to all parsing functions. This causes a | Guido van Rossum | 1996-11-11 | 1 | -11/+27 |
| | | | | | | | | | | ValueError exception when the query string contains fields that don't contain exactly one '=' sign. (By default, such fields are simply ignored.) Added this to the doc string describing parse() and parse_qs(). Also changed the default for keep_blank_values from None to 0 (the preferred way to spell 'FALSE'). | ||||
* | Don't require leading '-' on option name to Text.tag_cget | Guido van Rossum | 1996-11-11 | 2 | -0/+8 |
| | |||||
* | Fix the way the Authorization header is sent (how could this have worked?). | Guido van Rossum | 1996-11-11 | 1 | -1/+1 |
| | |||||
* | The usual :-( | Guido van Rossum | 1996-10-24 | 4 | -4/+4 |
| | |||||
* | Get rid of bogus binding of <Delete> to a function that deletes the next | Guido van Rossum | 1996-10-24 | 2 | -6/+0 |
| | | | | character (this is already a built-in binding now). | ||||
* | Fix truncated paragraph in doc string. | Guido van Rossum | 1996-10-24 | 1 | -2/+3 |
| | | | | Bump version to 2.0. | ||||
* | Cast mtime gotten from stat() to long int -- else it won't work | Guido van Rossum | 1996-10-24 | 1 | -1/+1 |
| | | | | | | on the Mac. Jack! Please fix this in the Mac distributions! | ||||
* | Make self.rfile unbuffered (self.wfile already is). This should fix | Guido van Rossum | 1996-10-23 | 1 | -1/+1 |
| | | | | CGIHTTPServer.py when used with the POST command. | ||||
* | Added support for floating point resolution to Scale.get(). | Guido van Rossum | 1996-10-23 | 2 | -2/+10 |
| | |||||
* | Get rid of evil workaround for Python 1.4b2 bug. | Guido van Rossum | 1996-10-22 | 1 | -4/+0 |
| | |||||
* | Fix another case where... | Guido van Rossum | 1996-10-22 | 1 | -0/+1 |
| | |||||
* | Change the default seeding -- use 8 bits of sub-second precision and | Guido van Rossum | 1996-10-21 | 1 | -1/+2 |
| | | | | fold in the higest 8 bits of the time as well. | ||||
* | The usual... | Guido van Rossum | 1996-10-21 | 4 | -8/+8 |
| | |||||
* | (Tkinter.py): Fixed bug in re-implementation of OptionMenu. | Fred Drake | 1996-10-21 | 2 | -2/+2 |
| | |||||
* | (Fred Drake:) Re-wrote the OptionMenu class to allow access to a real | Guido van Rossum | 1996-10-21 | 2 | -10/+56 |
| | | | | | Menu object via om['menu'] -- this is necessary to use a post-command with an OptionMenu. The API has not changed. | ||||
* | Added warning not to import directly. | Guido van Rossum | 1996-10-15 | 1 | -1/+2 |
| | |||||
* | Allow code objects to be passed to run() and eval(). | Guido van Rossum | 1996-10-15 | 1 | -2/+7 |
| | |||||
* | Ellipses -> Ellipsis rename (the dictionary really says that it should | Guido van Rossum | 1996-10-11 | 1 | -1/+1 |
| | | | | | | | | be Ellipsis!). Bumped the API version because a linker-visible symbol is affected. Old C code will still compile -- there's a b/w compat macro. Similarly, old Python code will still run, builtin exports both Ellipses and Ellipsis. | ||||
* | Added Slice and Ellipses types. | Guido van Rossum | 1996-10-11 | 1 | -0/+3 |
| | |||||
* | Fix some cases where self.openedurl wasn't set. | Guido van Rossum | 1996-10-10 | 1 | -2/+3 |
| | |||||
* | Don't add names that start with _ | Guido van Rossum | 1996-10-10 | 1 | -1/+4 |
| | |||||
* | (formatter.py): Simplify NullFormatter definition of add_hor_rule() to match | Fred Drake | 1996-10-08 | 1 | -3/+2 |
| | | | | documentation. | ||||
* | Remove RCS crud... Sigh... | Guido van Rossum | 1996-10-08 | 4 | -12/+0 |
| | |||||
* | Removed RCS crud from official Python release version. | Guido van Rossum | 1996-10-08 | 2 | -6/+0 |
| | |||||
* | The usual... Sigh... | Guido van Rossum | 1996-10-08 | 10 | -14/+34 |
| | |||||
* | Removed debugging print statement | Guido van Rossum | 1996-10-08 | 1 | -1/+0 |
| | |||||
* | Simple test module for strop. | Guido van Rossum | 1996-10-08 | 1 | -0/+21 |
| | |||||
* | Change to always call list.append with a single argument. | Guido van Rossum | 1996-10-08 | 2 | -2/+2 |
| | | | | This does not mean I still support this code!!! | ||||
* | Changes to always call list.append with a single argument. | Guido van Rossum | 1996-10-08 | 3 | -8/+8 |
| | |||||
* | Change to always call list.append with a single argument. | Guido van Rossum | 1996-10-08 | 3 | -3/+3 |
| | |||||
* | Set the __file__ attribute of the imported module in both versions of | Guido van Rossum | 1996-10-07 | 1 | -7/+11 |
| | | | | load_module(), to mimick the behavior of imp more closely. | ||||
* | Add provisions to set the (to be documented!) instance variable | Guido van Rossum | 1996-10-07 | 1 | -1/+4 |
| | | | | | 'writer' of the NullFormatter to the writter passed in, or to a NullWriter if none (or None) is passed in. | ||||
* | Compromise on test in find_class(): a user-defined function is okay, | Guido van Rossum | 1996-10-07 | 1 | -3/+1 |
| | | | | but a built-in function is not. | ||||
* | (Tkinter.py): Improve application basename determination to make .py and | Fred Drake | 1996-10-06 | 2 | -2/+4 |
| | | | | | .pyc extensions completely equivelent when locating the "profile" which should be read on startup. | ||||
* | Added getparamnames() to Message class -- return a list of all | Guido van Rossum | 1996-10-04 | 1 | -0/+8 |
| | | | | parameters of the content-type header. | ||||
* | Don't auto-install on import. This slows down apps that use | Guido van Rossum | 1996-10-04 | 1 | -6/+0 |
| | | | | some of our modules for special purposes (e.g. rexec). | ||||
* | (Tkinter.py): Fixed dumb typo in Misc.tk_setPalette(). | Fred Drake | 1996-10-04 | 2 | -4/+4 |
| | |||||
* | Don't mix stdout/stderr. | Guido van Rossum | 1996-10-02 | 1 | -2/+2 |
| | |||||
* | Add main program similar to pdb. | Guido van Rossum | 1996-10-01 | 1 | -0/+19 |
| | |||||
* | Always open file objects in binary mode. | Guido van Rossum | 1996-09-30 | 1 | -2/+2 |
| | |||||
* | Don't die if an ok file method (e.g. fileno) doesn't exist. | Guido van Rossum | 1996-09-30 | 1 | -1/+1 |
| | |||||
* | (Tkinter.py): Many revisions for Tk 4.X: Added clipboard support, updated | Fred Drake | 1996-09-27 | 2 | -80/+172 |
| | | | | | | | selection interface, handle the -displayof option intelligently in many places. Added "wm colormapwindows" and "winfo colormapfull" support. Removed "focus default" and "focus none" method: these are not in Tk 4.X. | ||||
* | (Canvas.py): Added definition of CanvasItem.cget() as suggested by | Fred Drake | 1996-09-26 | 2 | -0/+2 |
| | | | | Nils Fischbeck. |