Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bit of cleanup on the projects. | Guido van Rossum | 2000-03-31 | 4 | -73/+54 |
| | | | | Some refinements on the Wise file, also adding mmap.pyd. | ||||
* | Sigh. On Windows, (mode_t)i fails. Assume that there's a prototype | Guido van Rossum | 2000-03-31 | 1 | -1/+1 |
| | | | | in scope on systems where mode_t isn't the same size as int... | ||||
* | rename args variable in CALL_FUNCTION to callargs (avoids name | Jeremy Hylton | 2000-03-31 | 1 | -8/+11 |
| | | | | | | override) add missing DECREFs in error handling code of CALL_FUNCTION | ||||
* | Mark Hammond: Ooops - even though Win32 handles the same args, there | Guido van Rossum | 2000-03-31 | 1 | -4/+1 |
| | | | | was a superfluous check for the platform. | ||||
* | Added mmap project. (Mark Hammond.) | Guido van Rossum | 2000-03-31 | 2 | -0/+109 |
| | |||||
* | Hacked for Win32 by Mark Hammond. | Guido van Rossum | 2000-03-31 | 1 | -542/+569 |
| | | | | | | | | | | | | | | | | | Reformatted for 8-space tabs and fitted into 80-char lines by GvR. Mark writes: * the Win32 version now accepts the same args as the Unix version. The win32 specific "tag" param is now optional. The end result is that the exact same test suite runs on Windows (definately a worthy goal!). * I changed the error object. All occurences of the error, except for 1, corresponds to an underlying OS error. This one was changed to a ValueError (a better error for that condition), and the module error object is now simply EnvironmentError. All win32 error routines now call the new Windows specific error handler. | ||||
* | Improved test, by Mark Hammond, for Win32. | Guido van Rossum | 2000-03-31 | 1 | -11/+10 |
| | |||||
* | New version 1.0.4. I'm sure someone mailed me these patches but I | Guido van Rossum | 2000-03-31 | 1 | -6/+20 |
| | | | | | | | can't remember who. :-) Changes: - Support for Windows NT (different locking behavior) - Added a logging mechanism | ||||
* | New version 1.0.4. I'm sure someone mailed me these patches but I | Guido van Rossum | 2000-03-31 | 1 | -14/+33 |
| | | | | | | | | can't remember who. :-) Changes: - Owner name+email made generic instead of GvR - Support for Windows NT (running from a .bat file) - DOcument <HTML>...</HTML> tags | ||||
* | Fix by Eric Raymond: make the code that looks for various bits of | Guido van Rossum | 2000-03-31 | 1 | -15/+30 |
| | | | | | tab-setting magic much smarter, more correct, and more easily extensible. | ||||
* | Don't use the object call interface in Tk 8.0 -- the EvalObj* API | Guido van Rossum | 2000-03-31 | 1 | -41/+164 |
| | | | | | changed from 8.0 to 8.1 and I see no big reason to use objects in 8.0. At least now it works again with all versions from 8.0 - 8.3. | ||||
* | Oops, the previous patch contained a bug in chmod. Fixed now. | Guido van Rossum | 2000-03-31 | 1 | -2/+2 |
| | |||||
* | Two robustness patches: | Guido van Rossum | 2000-03-31 | 1 | -5/+12 |
| | | | | | | | | | (1) In opendir(), don't call the lock-release macros; we're manipulating list objects and that shouldn't be done in unlocked state. (2) Don't use posix_strint() for chmod() -- the mode_t arg might be a 64 bit int (reported by Nick Maclaren). | ||||
* | Couple more names. We need to add way more names -- I'll have to dig | Guido van Rossum | 2000-03-31 | 1 | -0/+21 |
| | | | | them out of the changelogs :-( | ||||
* | Change traceback error message to "most recent call last" from | Guido van Rossum | 2000-03-31 | 1 | -1/+1 |
| | | | | "innermost last". The latter was mysterious to newbies. | ||||
* | Use modern PyArg_ParseTuple style, with function names. | Guido van Rossum | 2000-03-31 | 1 | -8/+8 |
| | | | | (Mostly.) | ||||
* | Use modern PyArg_ParseTuple style, with function names. | Guido van Rossum | 2000-03-31 | 1 | -8/+8 |
| | |||||
* | robustify UserList constructor -- will now accept any sequence | Jeremy Hylton | 2000-03-31 | 2 | -5/+19 |
| | | | | add test cases for non-UserList class, tuple, & string | ||||
* | Two fixes for extended call syntax: | Jeremy Hylton | 2000-03-30 | 3 | -12/+69 |
| | | | | | | | If a non-tuple sequence is passed as the *arg, convert it to a tuple before checking its length. If named keyword arguments are used in combination with **kwargs, make a copy of kwargs before inserting the new keys. | ||||
* | Add linuxaudio module. | Guido van Rossum | 2000-03-30 | 1 | -0/+5 |
| | |||||
* | Audio module for Linux, contributed by Peter Bosch. | Guido van Rossum | 2000-03-30 | 1 | -0/+467 |
| | | | | Careful, this has had zero testing (except by Peter)! | ||||
* | Show Tcl/Tk version number in _test() and show Unicode test if possible. | Guido van Rossum | 2000-03-30 | 1 | -1/+4 |
| | |||||
* | Make it version 1.6a1. | Guido van Rossum | 2000-03-30 | 1 | -3/+3 |
| | |||||
* | Seems there was a version string here that still looked like 1.5.2. | Guido van Rossum | 2000-03-30 | 1 | -2/+2 |
| | |||||
* | Mark Hammond: ensure the new standard module winreg is installed. | Guido van Rossum | 2000-03-30 | 1 | -0/+5 |
| | |||||
* | Add PyDict_Copy() function to C API for dicts. It returns a new | Jeremy Hylton | 2000-03-30 | 4 | -2/+25 |
| | | | | dictionary that contains the same key/value pairs as p. | ||||
* | Internal changes. | Guido van Rossum | 2000-03-30 | 1 | -5/+4 |
| | |||||
* | Added Tcl 8.3. | Guido van Rossum | 2000-03-30 | 1 | -11/+31 |
| | | | | | | Building on Windows NT. Removed Tcl installation. Commented out Doc installation. | ||||
* | Deleting Python 1.5 project and Wise file. | Guido van Rossum | 2000-03-30 | 2 | -3120/+0 |
| | |||||
* | Output for simple test case for mmap on Unix; someone needs to write a | Andrew M. Kuchling | 2000-03-30 | 1 | -0/+0 |
| | | | | Win32 test case. | ||||
* | Added simple test case for mmap on Unix; someone needs to write a | Andrew M. Kuchling | 2000-03-30 | 1 | -0/+69 |
| | | | | Win32 test case | ||||
* | Added mmap module -- map a view of a file into memory on Win32 and Unix. | Andrew M. Kuchling | 2000-03-30 | 2 | -1/+849 |
| | | | | (Needs testing on Win32.) | ||||
* | Removed two files that were added temporarily. | Guido van Rossum | 2000-03-30 | 2 | -708/+0 |
| | |||||
* | Bump version to 0.6 for the event of the Python 1.6 alpha 1 release. | Guido van Rossum | 2000-03-30 | 1 | -1/+1 |
| | |||||
* | Oops: 'build_extensions()' no longer takes an 'extensions' list. | Greg Ward | 2000-03-30 | 1 | -1/+1 |
| | |||||
* | Revamped path access again, by Mark Hammond, to be more robust in the | Guido van Rossum | 2000-03-30 | 1 | -91/+193 |
| | | | | | | | | | | | light of three different situations: (1) running from build; (2) running from installed; (3) running without being able to find an installation (e.g. as a COM object). The system paths in the repository are only used for (3); the path deduced from the installation location are used otherwise. PYTHONHOME overrides in all cases. Read the comments for more details. | ||||
* | Michael Hudson: With the (cool!) new call syntax, the longest opcode | Guido van Rossum | 2000-03-30 | 1 | -1/+1 |
| | | | | | name is much longer, which fouls up dis's formatting slightly; this is a "fix" for that. | ||||
* | Lawrence Kesteloot noted: Lib/user.py has a comment that says that the | Guido van Rossum | 2000-03-30 | 1 | -1/+1 |
| | | | | | script pointed to by PYTHONPATH will be executed on startup. That should say PYTHONSTARTUP. | ||||
* | Changes from 1.5.2p2, plus fix a couple of errors noted by Hernan | Fred Drake | 2000-03-29 | 1 | -5/+11 |
| | | | | Martinez Foffani <hfoffani@sofrecom.com.ar>. | ||||
* | __pushtodev(): Ignore transient sunaudiodev.errors when setting the | Barry Warsaw | 2000-03-29 | 1 | -1/+5 |
| | | | | | device info. I don't know why these occur, but they seem to be shortlived and harmless. | ||||
* | eval_code2(): Oops, in the last checkin, we shouldn't check for | Barry Warsaw | 2000-03-29 | 1 | -6/+2 |
| | | | | | PyErr_Occurred(), just set x=NULL and break. Oh, and make Jeremy stop nagging me about the "special" indentation for this block. | ||||
* | eval_code2(): In the extended calling syntax opcodes, you must check | Barry Warsaw | 2000-03-29 | 1 | -0/+8 |
| | | | | | | the return value of PySequence_Length(). If an exception occurred, the returned length will be -1. Make sure this doesn't get obscurred, and that the bogus length isn't used. | ||||
* | Moved robotparser.py to the Lib directory. | Guido van Rossum | 2000-03-29 | 1 | -97/+0 |
| | | | | If you do a "cvs update" in the Lib directory, it will pop up there. | ||||
* | Put the Python "system" include dir last, rather than first. | Greg Ward | 2000-03-29 | 1 | -1/+3 |
| | |||||
* | Call 'find_exe()', not '_find_exe()'. | Greg Ward | 2000-03-29 | 1 | -3/+3 |
| | |||||
* | Patch inspired by Bastian Kleineidam <calvin@cs.uni-sb.de>: | Greg Ward | 2000-03-29 | 1 | -12/+7 |
| | | | | | use global __debug__ flag to determine if compiled files will be ".pyc" or ".pyo". Tweaked compilation output messages too. | ||||
* | Changed 'copy_tree()' so it returns the list of all files that were copied or | Greg Ward | 2000-03-29 | 1 | -11/+12 |
| | | | | might have been copied, regardless of the 'update' flag. | ||||
* | Documented Bastian's patch. | Greg Ward | 2000-03-29 | 1 | -7/+9 |
| | | | | Made handling OSError in 'mkpath()' more standard. | ||||
* | Patch from Bastian Kleineidam <calvin@cs.uni-sb.de>: | Greg Ward | 2000-03-29 | 1 | -3/+5 |
| | | | | make 'mkdir()' return list of directories created. | ||||
* | Added 'make_tarball()' and 'make_zipfile()' functions in preparation | Greg Ward | 2000-03-29 | 1 | -2/+90 |
| | | | | | for the 'bdist_dumb' command. Adapted, with tweakage, from the 'sdist' command. |