Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -4/+4 |
| | | | | From SF patch #852334. | ||||
* | Fix a bunch of typos in documentation, docstrings and comments. | Walter Dörwald | 2003-10-20 | 1 | -1/+1 |
| | | | | (From SF patch #810751) | ||||
* | Get rid of many apply() calls. | Guido van Rossum | 2003-02-27 | 1 | -2/+2 |
| | |||||
* | Applying patch | Gustavo Niemeyer | 2002-12-16 | 1 | -4/+7 |
| | | | | | | | | | | | | | | | | | | | | | [#636769] Fix for major rexec bugs * Lib/rexec.py (FileBase): Added 'xreadlines' and '__iter__' to allowed file methods. (FileWrapper.__init__): Removed unnecessary self.f variable, which gave direct access to the file object. (RExec): Added 'xreadlines' and '_weakref' to allowed modules. (RExec.r_open): Convert string subclasses to a real string classes before doing comparisons with mode parameter. * Lib/ihooks.py (BasicModuleImporter.import_module/reload/unload): Convert the module name to a real string before working with it. (ModuleImporter.import_module/import_it/reload): Convert the module name to a real strings before working with it. * Misc/NEWS Document the change. | ||||
* | SF 563203. Replaced 'has_key()' with 'in'. | Raymond Hettinger | 2002-06-01 | 1 | -4/+4 |
| | |||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -5/+4 |
| | |||||
* | added a few more __all__ lists | Skip Montanaro | 2001-01-23 | 1 | -1/+3 |
| | | | | fixed typo in ihooks docstring | ||||
* | Whitespace normalization. | Tim Peters | 2001-01-14 | 1 | -2/+2 |
| | |||||
* | Thomas Heller <thomas.heller@ion-tof.com>: | Fred Drake | 2000-04-13 | 1 | -7/+8 |
| | | | | | | | ihooks.ModuleLoader does not implement reload(mod) correctly: If mod has already been loaded by ModuleLoader, it has been returned from a cache. Added an additional parameter to import_it() to force reloading. | ||||
* | Support loading of packages. (I had this coded up for a while but | Guido van Rossum | 1998-06-29 | 1 | -34/+172 |
| | | | | | didn't want to commit until it had been tested. I presume that it works in Grail.) | ||||
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -138/+138 |
| | |||||
* | Add try-finally to close the file after loading it in | Guido van Rossum | 1997-08-13 | 1 | -13/+16 |
| | | | | | ModuleLoader.load_module! (Thanks to Daniel Larsson who complained about this.) | ||||
* | 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. | ||||
* | 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). | ||||
* | close module file after loading | Guido van Rossum | 1996-09-10 | 1 | -10/+13 |
| | |||||
* | Import marshal before using it :-( | Guido van Rossum | 1996-06-17 | 1 | -0/+1 |
| | |||||
* | fix bug in reload | Guido van Rossum | 1995-08-09 | 1 | -0/+1 |
| | |||||
* | Initial revision | Guido van Rossum | 1995-08-04 | 1 | -0/+365 |