Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Forgot to save the project file -- this also reflects the use of | Guido van Rossum | 2000-04-05 | 1 | -4/+4 |
| | | | | | Tcl/Tk 8.2 instead of 8.3, because 8.3.0 often crashes on closing a window. | ||||
* | Lots of cleanup things. | Guido van Rossum | 2000-04-05 | 1 | -190/+111 |
| | | | | | | | | | | | | | | | | | | | | | Added the bitmaps back, and added the wizard style program group selection dialog. Got rid of references to backup etc. inserted by the installer wizard -- we don't use these. Got rid of conditionals for Windows 3.1, ditto. Changed version to 1.6a2. Changed default install directory to "C:\Python16" (not really, but close). Install only one copy of python16.lib. Install the two MS DLLs (versioned) and python16.dll (unversioned) in the system directory. Install Tcl/Tk and expat in the DLLs directory. | ||||
* | Noted by Guido: | Fred Drake | 2000-04-05 | 1 | -7/+7 |
| | | | | | Fixed up descriptions of altzone and timezone not to refer to the 0th meridian, which doesn't exist. Reference is now to UTC. | ||||
* | Noted by Guido: | Fred Drake | 2000-04-05 | 1 | -2/+2 |
| | | | | Directionality of up/down were confused. | ||||
* | Noted by Guido: | Fred Drake | 2000-04-05 | 1 | -1/+1 |
| | | | | | Note in the "Caveats" section should refer to the exit() function, not exit_thread(). | ||||
* | Mark Hammond: | Fred Drake | 2000-04-05 | 1 | -0/+2 |
| | | | | | | This patch fixes the mmap module on Windows 9x. Also updates the mmap test to remove the test file. | ||||
* | Mark Hammond <mhammond@skippinet.com.au>: | Fred Drake | 2000-04-05 | 1 | -6/+2 |
| | | | | This patch fixes the mmap module on Windows 9x. | ||||
* | Work the Tcl version number in the path we search for. | Guido van Rossum | 2000-04-04 | 1 | -2/+3 |
| | |||||
* | Get rid of Win32s check. | Guido van Rossum | 2000-04-04 | 1 | -17/+1 |
| | |||||
* | Merged in changes from 1.5.2p2 release. | Fred Drake | 2000-04-04 | 1 | -0/+2 |
| | |||||
* | Merged in changes from 1.5.2p2 release as appropriate. | Fred Drake | 2000-04-04 | 1 | -8/+15 |
| | |||||
* | Skip Montanaro submits a simple patch that makes encode() and decode() | Guido van Rossum | 2000-04-04 | 1 | -0/+4 |
| | | | | recognize the '7bit' and '8bit' encodings, to simplify use. | ||||
* | Added "See also" section; from Peter Funk <pf@artcom-gmbh.de> | Fred Drake | 2000-04-04 | 1 | -1/+3 |
| | | | | (re-written). | ||||
* | Added "See also" section; from Peter Funk <pf@artcom-gmbh.de>. | Fred Drake | 2000-04-04 | 1 | -0/+3 |
| | |||||
* | Fixed typo in example code; spotted by Everett Lipman | Fred Drake | 2000-04-04 | 1 | -1/+1 |
| | | | | <lipman@sphere.niddk.nih.gov>. | ||||
* | Patch by Fred Gansevles. | Guido van Rossum | 2000-04-04 | 1 | -9/+15 |
| | | | | | | | | | | | This patch solves 2 problems of the os module. 1) Bug ID #50 (case-mismatch wiht "environ.get(..,..)" and "del environ[..]") 2) os.environ.update (dict) doesn't propagate changes to the 'real' environment (i.e doesn't call putenv) This patches also has minor changes specific for 1.6a The string module isn't used anymore, instead the strings own methods are used. | ||||
* | Patch from Hrvoje Niksic <hniksic@iskon.hr>: | Fred Drake | 2000-04-04 | 1 | -8/+8 |
| | | | | | | | | | | | | | | The bug is in mmap_read_line_method(), and its loop that searches for newlines. After the loop reaches EOF, eol is incremented and points after the end of the memory. This results in readline() method sometimes picking up and returning a byte after the end of the string. This is usually a bogus \0, but it could cause SIGSEGV if it's after the end of the page). The patch fixes the problem. Also, it uses memchr() for finding a character, which is in fact the "strnchr" the comment is asking for. memchr() is already used in Python sources, so there should be no portability problems. | ||||
* | Added notes about the eventual disappearance of two-parameter bind(), | Fred Drake | 2000-04-04 | 1 | -2/+13 |
| | | | | | | | connect(), and connect_ex(). I didn't make these deprecation notices since it was never a documented feature. | ||||
* | Add warning that multi-arg connect() etc. are deprecated. | Guido van Rossum | 2000-04-04 | 1 | -1/+1 |
| | |||||
* | Put back multi-arg capability on connect/connect_ex/bind, for | Guido van Rossum | 2000-04-04 | 1 | -21/+15 |
| | | | | backwards compatibility, and to avoid a revolution. | ||||
* | Since Thomas Wouters kept complaining that he wants access to the the | Guido van Rossum | 2000-04-04 | 1 | -0/+3 |
| | | | | | | | | Unix From lines, change the UnixMailbox class so that _search_start() positions the file *before* the Unix From line instead of after it; change _search_end() to skip one line before looking for the next From line. The rfc822.Message class automatically recognizes these Unix From lines and squirrels them away in the 'unixfrom' instance variable. | ||||
* | Reorganization: ripped util.py to shreds, creating in the process: | Greg Ward | 2000-04-04 | 5 | -664/+719 |
| | | | | | | | | | - file_util.py: operations on single files - dir_util.py: operations on whole directories or directory trees - dep_util.py: simple timestamp-based dependency analysis - archive_util.py: creation of archive (tar, zip, ...) files The functions left in util.py are miscellany that don't fit in any of the new files. | ||||
* | Reorganization: moved the Distribution class from core.py to dist.py, and | Greg Ward | 2000-04-04 | 3 | -933/+963 |
| | | | | | | the Command class from core.py to cmd.py. No other code needs changing though; distutils.core still provides the Command and Distribution classes, although indirectly now. | ||||
* | Only write message about changed Tab size with -v. | Guido van Rossum | 2000-04-03 | 1 | -1/+2 |
| | |||||
* | Merged changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 59 | -520/+1252 |
| | | | | (Very rough.) | ||||
* | Merge in changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 1 | -654/+1297 |
| | | | | Hopefully I got all this right! | ||||
* | Merged changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 1 | -3/+24 |
| | |||||
* | UserString section: | Fred Drake | 2000-04-03 | 1 | -6/+5 |
| | | | | | | | Small cleanups noted by Detlef Lannert <lannert@lannert.rz.uni-duesseldorf.de>. Make the spelling of Unicode always uppercase. | ||||
* | Note that "Unicode" is always capitalized. | Fred Drake | 2000-04-03 | 1 | -0/+4 |
| | |||||
* | Merge in changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 1 | -24/+65 |
| | |||||
* | Merged changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 14 | -201/+371 |
| | |||||
* | Merge in changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 1 | -267/+410 |
| | |||||
* | Merged changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 11 | -28/+118 |
| | |||||
* | UserString class from Peter Funk <pf@artcom-gmbh.de>. | Fred Drake | 2000-04-03 | 4 | -0/+435 |
| | |||||
* | This patch looks large, but it just deletes the ^M characters and | Andrew M. Kuchling | 2000-04-02 | 3 | -482/+482 |
| | | | | untabifies the files. No actual code changes were made. | ||||
* | Untabified file to fix problems reported by tabnanny | Andrew M. Kuchling | 2000-04-02 | 1 | -17/+17 |
| | |||||
* | Mark Hammond: Uncomment call to delete test data when done. | Fred Drake | 2000-04-01 | 1 | -1/+1 |
| | |||||
* | Added --numeric option, similar to mkhtml.sh. | Fred Drake | 2000-03-31 | 1 | -2/+7 |
| | |||||
* | Added rule to copy in the icons/ directory. | Fred Drake | 2000-03-31 | 1 | -1/+5 |
| | |||||
* | List of subdirs that are generated during the build. | Fred Drake | 2000-03-31 | 1 | -0/+8 |
| | |||||
* | Build rules for the "long HTML" version. | Fred Drake | 2000-03-31 | 1 | -0/+105 |
| | |||||
* | This commit was manufactured by cvs2svn to create tag 'r16a1'.v1.6a1 | cvs2svn | 2000-03-31 | 1 | -0/+1 |
| | |||||
* | Quick update to the README file. For intros and books we now point to | Guido van Rossum | 2000-03-31 | 1 | -42/+13 |
| | | | | the website. | ||||
* | Add a README file so that cvs update -P doesn't obliterate this | Guido van Rossum | 2000-03-31 | 1 | -0/+2 |
| | | | | directory, and so that people have a clue as to why it exists. | ||||
* | Two more names. I just realize that there may be more contributors to | Guido van Rossum | 2000-03-31 | 1 | -0/+2 |
| | | | | distutils lurking in CVS logs that I probably haven't read. Oh well. | ||||
* | I believe I've now got all the names mentioned in the CVS logs since | Guido van Rossum | 2000-03-31 | 1 | -0/+20 |
| | | | | | | | | 1.5.2 was released, except those who contributed only to Doc files -- Fred has his own way of doing this. This doesn't mean that I've got everyone who contributed *before* 1.5.2 was released in here... :-( | ||||
* | Fixed my simplification to Thomas' patch: winreg and win32api export the same | Greg Ward | 2000-03-31 | 1 | -8/+13 |
| | | | | functions, but with different names. | ||||
* | Improve explanation of reference counts for PyString_Concat(). | Fred Drake | 2000-03-31 | 1 | -2/+3 |
| | |||||
* | Reflect the two new sections in the dependencies. | Fred Drake | 2000-03-31 | 1 | -0/+2 |
| | |||||
* | Two new sections. Preliminary. | Fred Drake | 2000-03-31 | 3 | -0/+239 |
| |