Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | This commit was manufactured by cvs2svn to create tag 'r15b2'.v1.5b2 | 1997-12-12 | 1 | -0/+1 | |
| | |||||
* | Change _nametowidget to nametowidget -- it is a public interface. | 1997-12-12 | 1 | -1/+2 | |
| | |||||
* | add_idx(): Don't add unnecessary markup around the little markers stuck in the | 1997-12-11 | 1 | -27/+27 | |
| | | | | index to cross-references; an image doesn't benefit by being bold! | ||||
* | Remove unneeded "import re". | 1997-12-11 | 1 | -1/+0 | |
| | |||||
* | Typed in the relevant changes since 1.5b1. | 1997-12-11 | 1 | -2/+172 | |
| | |||||
* | Doug Marien. | 1997-12-11 | 1 | -0/+1 | |
| | |||||
* | AMK's latest version. | 1997-12-11 | 2 | -162/+186 | |
| | |||||
* | Prepared the README for 1.5b2. | 1997-12-11 | 1 | -17/+50 | |
| | |||||
* | Update to the Big Comment at the top of the file. It should better | 1997-12-11 | 1 | -24/+43 | |
| | | | | | explain what the users of the various Emacsen have to do to get this all working. | ||||
* | Last minute fix to Text.window_cget(), which should properly Tcl-ify | 1997-12-11 | 1 | -0/+4 | |
| | | | | the option name (prepend '-', strip trailing '_'). | ||||
* | Move the dbm module around and add an introductory paragraph for dbm, | 1997-12-11 | 1 | -3/+12 | |
| | | | | gdbm and bsddb, as suggested by Skip Montanaro. | ||||
* | Copy the change from ../getpathp.c here. | 1997-12-11 | 1 | -1/+1 | |
| | |||||
* | Installer for beta-2. | 1997-12-11 | 1 | -20/+38 | |
| | | | | Use Program Files, register pythonw.exe to execute .pyw files. | ||||
* | update the example without the example.def file | 1997-12-11 | 1 | -6/+4 | |
| | |||||
* | New instructions, take VC++ 5.x into account. | 1997-12-11 | 1 | -21/+51 | |
| | |||||
* | Adding VC 5.x workspace and project files | 1997-12-11 | 2 | -0/+144 | |
| | |||||
* | Added tkappinit.c source, and define WITH_APPINIT. | 1997-12-11 | 1 | -2/+6 | |
| | |||||
* | yeah, yeah. | 1997-12-11 | 1 | -2/+6 | |
| | |||||
* | Allocate one byte extra in some cases. | 1997-12-11 | 1 | -1/+1 | |
| | |||||
* | Fix problem detected by Greg McFarlane -- callbacks passed to | 1997-12-11 | 1 | -10/+16 | |
| | | | | | bind_class() and bind_all() are destroyed when the widget to which they were passed is destroyed. | ||||
* | Jim Fulton writes: | 1997-12-10 | 1 | -5/+12 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | The attached patch adds the following behavior to the handling of REDUCE codes: - A user-defined type may have a __reduce__ method that returns a string rather than a tuple, in which case the object is saved as a global object with a name given by the string returned by reduce. This was a feature added to cPickle a long time ago. - User-defined types can now support unpickling without executing a constructor. The second value returned from '__reduce__' can now be None, rather than an argument tuple. On unpickling, if the second value returned from '__reduce__' during pickling was None, then rather than calling the first value returned from '__reduce__', directly, the '__basicnew__' method of the first value returned from '__reduce__' is called without arguments. I also got rid of a few of Chris' extra ()s, which he used to make python ifs look like C ifs. | ||||
* | Remove "Lib/test" from the default path; this is now a package! | 1997-12-10 | 1 | -1/+0 | |
| | |||||
* | The 'l' flag (locale specific matching) has been renamed to 'L'. | 1997-12-10 | 3 | -6/+8 | |
| | |||||
* | At Barry's suggestion, plug the security leak by using an empty | 1997-12-10 | 2 | -6/+12 | |
| | | | | | | __builtins__ for all calls to eval(). This still allows someone to write string.atof("[1]*1000000") (which Jim Fulton worries about) but effectively disables access to system modules and functions. | ||||
* | Since this module is used as a fallback in case no built-in modules | 1997-12-10 | 2 | -6/+14 | |
| | | | | | | | | | have been configured, string.atof() should not fail when "import re" fails (usually because pcre is not there). This opens up a tiny security hole: *if* an attacker can make "import re" fail, they can also make string.atof(arbitrary_string) evaluate the arbitrary string. Nothing to keep me awake at night... | ||||
* | Don't specify base 0 to string.atoi when unpickling integers in text | 1997-12-10 | 1 | -1/+1 | |
| | | | | | | mode. The pickler always uses base 10 so the default base should be fine. (The base gets us in trouble when there's no strop module, as the atoi() in string.py only supports base 10. This is for JPython.) | ||||
* | New names. | 1997-12-10 | 1 | -0/+3 | |
| | |||||
* | Planned release date for 1.5b2. | 1997-12-10 | 2 | -2/+2 | |
| | |||||
* | Support uue and x-uue as short names for uuencode. | 1997-12-10 | 1 | -2/+6 | |
| | |||||
* | Doc strings and reformatting with 4 spaces bty Mitch Chapman. | 1997-12-10 | 1 | -609/+661 | |
| | | | | Untabified and minor tweaks by me. | ||||
* | Modified quicksort by Raymund Galvin, after studying the GNU libg++ | 1997-12-10 | 1 | -23/+48 | |
| | | | | | quicksort. This should be much faster if there are lots of duplicates, and otherwise at least as good. | ||||
* | # Use proper temp subdir for intermediates. | 1997-12-10 | 1 | -2/+2 | |
| | |||||
* | Need a cast when comparing type object in isinstance() | 1997-12-10 | 1 | -1/+1 | |
| | |||||
* | Start calling it 1.5b2 | 1997-12-10 | 1 | -1/+1 | |
| | |||||
* | Comment out CODE and DATA statements that are apparently obsolete. | 1997-12-10 | 1 | -2/+2 | |
| | |||||
* | Adding a new project: pythonw, or WinMain.c, containing a main program | 1997-12-10 | 3 | -4/+131 | |
| | | | | | that doesn't have a console window attached. stdout/stderr are lost. This is handy though for things like grail. | ||||
* | Document binary format and __init__-free unpickling. Added a pointer | 1997-12-09 | 2 | -50/+98 | |
| | | | | to cPickle. | ||||
* | Turn the table for flags into a nested itemized environment. | 1997-12-09 | 2 | -42/+48 | |
| | |||||
* | Add a test for a bad format character. | 1997-12-09 | 1 | -0/+16 | |
| | |||||
* | Add explicit check for correct next character in format at end of | 1997-12-09 | 1 | -0/+7 | |
| | | | | | format. This will complain about illegal formats like "O#" instead of ignoring the '#'. | ||||
* | Fix a little mess (Likecode{...} -> Like \code{...}) in recently added text. | 1997-12-09 | 2 | -2/+2 | |
| | |||||
* | Reference to PYTHONPATH should be PYTHONSTARTUP. | 1997-12-09 | 2 | -2/+2 | |
| | |||||
* | Added note about the module's obsolescence. | 1997-12-09 | 2 | -2/+22 | |
| | |||||
* | # Typos in the comments giving the names of two recently added distributions. | 1997-12-09 | 1 | -2/+2 | |
| | |||||
* | Fix the way the version number is gotten out of the RCS revision. | 1997-12-09 | 1 | -1/+2 | |
| | |||||
* | Fix the test for pow() -- no more TypeErrors are raised! | 1997-12-09 | 1 | -2/+2 | |
| | |||||
* | Typo: RUSAGE_CHILDERN -> RUSAGE_CHILDREN. | 1997-12-09 | 1 | -1/+1 | |
| | |||||
* | LC_MESSAGES is not defined on all systems; use #ifdef LC_MESSAGES. | 1997-12-09 | 1 | -0/+2 | |
| | |||||
* | Guess... :-) | 1997-12-09 | 6 | -167/+474 | |
| | |||||
* | Checking in ConfigParser.py -- I don't see a reason why this can't be | 1997-12-09 | 1 | -0/+255 | |
| | | | | | liberated. This was originally written by Ken and later revamped by Barry. |