- 03 May, 2000 8 commits
-
-
Fred Drake authored
Spotted by Greg Kochanski <gpk@bell-labs.com>.
-
Fred Drake authored
Added 'u' and 'u#' tags for PyArg_ParseTuple - these turn a PyUnicodeObject argument into a Py_UNICODE * buffer, or a Py_UNICODE * buffer plus a length with the '#'. Also added an analog to 'U' for Py_BuildValue.
-
Fred Drake authored
you pass server information to the constructor. Error noted by Pedro Diaz Jimenez <diazjimenez@ctv.es>.
-
Guido van Rossum authored
a size of 0 *is* illegal.
-
Guido van Rossum authored
Fixes the MBCS codec to work correctly with zero length strings.
-
Jack Jansen authored
Moved to the Compat folder (in case anyone still wants to try MPW building), it hasn't been used for years.
-
Jack Jansen authored
-
Guido van Rossum authored
Checkin 2.131 of posixmodule.c changed os.stat on Windows, so that "/bin/" type notation (trailing backslash) would work on Windows to be consistent with Unix. However, the patch broke the simple case of: os.stat("\\") This did work in 1.5.2, and obviously should! This patch addresses this, and restores the correct behaviour.
-
- 02 May, 2000 19 commits
-
-
Jeremy Hylton authored
Attached is a set of diffs for the .py compiler that adds support for the new extended call syntax. compiler/ast.py: CallFunc node gets 2 new children to support extended call syntax - "star_args" (for "*args") and "dstar_args" (for "**args") compiler/pyassem.py It appear that self.lnotab is supposed to be responsible for tracking line numbers, but self.firstlineno was still hanging around. Removed self.firstlineno completely. NOTE - I didnt actually test that the generated code has the correct line numbers!! Stack depth tracking appeared a little broken - the checks never made it beyond the "self.patterns" check - thus, the custom methods were never called! Fixed this. (XXX Jeremy notes: I think this code is still broken because it doesn't track stack effects across block bounaries.) Added support for the new extended call syntax opcodes for depth calculations. compiler/pycodegen.py Added support for the new extended call syntax opcodes. compiler/transformer.py Added support for the new extended call syntax.
-
Jeremy Hylton authored
compile.py: On Windows, use 'nul' instead of '/dev/null'. test.py: Use double-quotes for the command-line, as Windows doesnt recognise singles.
-
Guido van Rossum authored
don't think that's what we want. There was some brief discussion of this somewhere but I don't recall where.
-
Barry Warsaw authored
-
Barry Warsaw authored
return 0 (exceptions don't match). This means that if an ImportError is raised because exceptions.py can't be imported, the interpreter will exit "cleanly" with an error message instead of just core dumping. PyErr_SetFromErrnoWithFilename(), PyErr_SetFromWindowsErrWithFilename(): Don't test on Py_UseClassExceptionsFlag.
-
Barry Warsaw authored
-
Barry Warsaw authored
are no longer supported (i.e. -X option is removed). _PyBuiltin_Init_1(): Don't call initerrors(). This does mean that it is possible to raise an ImportError before that exception has been initialized, say because exceptions.py can't be found, or contains bogosity. See changes to errors.c for how this is handled. _PyBuiltin_Init_2(): Don't test Py_UseClassExceptionsFlag, just go ahead and initialize the class-based standard exceptions. If this fails, we throw a Py_FatalError.
-
Barry Warsaw authored
Py_Main(): Remove the 'X' case.
-
Barry Warsaw authored
API consistency, but nothing sets it or checks it now.
-
Guido van Rossum authored
If you still haven't updated your extension since the Grand Renaming, you don't deserve Python 1.6. :-)
-
Barry Warsaw authored
-
Fred Drake authored
-
Fred Drake authored
Added support for optional parameter explaining the change that was made in the specified version.
-
Fred Drake authored
was allowed to be None.
-
Fred Drake authored
-
Guido van Rossum authored
search() functions didn't even work because _fixflags() isn't idempotent. I'm adding another stop-gap measure so that you can at least use sre.search() and sre.match() with a zero flags arg.
-
Guido van Rossum authored
telnetlib is unable to connect to a few telnet daemons because of improper IAC handling, heres an attached oneliner to reject WILL messages which will allow many more telnet daemons to work with it, namely FreeBSD.
-
Guido van Rossum authored
Bad % formatting.
-
Guido van Rossum authored
the /nodefaultlib: option.
-
- 01 May, 2000 12 commits
-
-
Guido van Rossum authored
Fixed \OOO interpretation for Unicode objects. \777 now correctly produces the Unicode character with ordinal 511.
-
Guido van Rossum authored
Changed all references to the MAGIC constant to use a global pyc_magic instead. This global is initially set to MAGIC, but can be changed by the _PyImport_Init() function to provide for special features implemented in the compiler which are settable using command line switches and affect the way PYC files are generated. Currently this change is only done for the -U flag.
-
Guido van Rossum authored
(1) Added and documented the capability for shlex to handle lexical-level inclusion and a stack of input sources. Also, the input stream member is now documented, and the constructor takes an optional source-filename. The class provides facilities to generate error messages that track file and line number. (2) Add a convenience function to generate C-compiler style error leaders.
-
Guido van Rossum authored
Add a convenience function to generate C-compiler style error leaders.
-
Guido van Rossum authored
Added and documented the capability for shlex to handle lexical-level inclusion and a stack of input sources. Also, the input stream member is now documented, and the constructor takes an optional source-filename. The class provides facilities to generate error messages that track file and line number. [GvR: I changed the __main__ code so that it actually stops at EOF, as Eric surely intended -- however it returned '' instead of the None he was testing for.]
-
Guido van Rossum authored
Added Py_UnicodeFlag for use by the -U command line option.
-
Guido van Rossum authored
Support for the new -U command line option option: with the option enabled the Python compiler interprets all "..." strings as u"..." (same with r"..." and ur"...").
-
Guido van Rossum authored
Added -U command line option. With the option enabled the Python compiler interprets all "..." strings as u"..." (same with r"..." and ur"...").
-
Guido van Rossum authored
1.6a2 caused by wrong return values in routine allcaps83. [GvR: I also changed the case for end-s>8 to return 0.]
-
Barry Warsaw authored
previous functionality utime(path, (atime, mtime)), now allowed is utime(path, None) which sets the file's times to the current time.
-
Guido van Rossum authored
The two methods .readline() and .readlines() in StreamReaderWriter didn't define the self argument. Found by Tom Emerson.
-
Barry Warsaw authored
utime(path, NULL) call, setting the atime and mtime of the file to the current time. The previous signature utime(path, (atime, mtime)) is of course still allowed.
-
- 28 Apr, 2000 1 commit
-
-
Guido van Rossum authored
Store sys.exc_info()[:2] instead.
-