- 07 Jun, 2004 1 commit
-
-
Thomas Heller authored
Already backported.
-
- 28 May, 2004 1 commit
-
-
Fred Drake authored
-
- 01 Apr, 2004 1 commit
-
-
Jeremy Hylton authored
Revise the long comment that explained details of the magic number in gory detail.
-
- 26 Mar, 2004 1 commit
-
-
Armin Rigo authored
-
- 24 Mar, 2004 1 commit
-
-
Nicholas Bastin authored
-
- 23 Mar, 2004 1 commit
-
-
Martin v. Löwis authored
Backported to 2.3.
-
- 02 Jan, 2004 1 commit
-
-
Jeremy Hylton authored
-
- 20 Nov, 2003 1 commit
-
-
Jack Jansen authored
-
- 20 Oct, 2003 1 commit
-
-
Walter Dörwald authored
(From SF patch #810751)
-
- 04 Sep, 2003 1 commit
-
-
Jason Tishler authored
The embed2.diff patch solves the user's problem by exporting the missing symbols from the Python core so Python can be embedded in another Cygwin application (well, at lest vim).
-
- 11 Jul, 2003 1 commit
-
-
Fred Drake authored
- there's a weird variable name here (zimpimport), but I'll leave that for someone that's familiar with the ZIP import support
-
- 16 Jun, 2003 1 commit
-
-
Neil Schemenauer authored
operate on the module dictionary directly. This prevents spurious depreciation warnings from being raised if a submodule name shadows a builtin name.
-
- 23 Mar, 2003 1 commit
-
-
Neal Norwitz authored
Will backport.
-
- 17 Feb, 2003 1 commit
-
-
Neal Norwitz authored
use METH_NOARGS instead
-
- 12 Feb, 2003 2 commits
-
-
Neal Norwitz authored
Add missing INCREFs and re-indent returns to be consistent. Add \n\ for lines in docstring Add a pathetic test Add docs
-
Guido van Rossum authored
mostly from SF patch #683257, but I had to change unlock_import() to return an error value to avoid fatal error. Should this be backported? The patch requested this, but it's a new feature.
-
- 24 Jan, 2003 1 commit
-
-
Jack Jansen authored
MacPython-OS9 specific fix: If there are non-string items on sys.path don't try to intern them. This has the theoretical problem that resource filenames on sys.path cannot be unicode objects, but in practice that shouldn't matter.
-
- 30 Dec, 2002 1 commit
-
-
Just van Rossum authored
- new import hooks in import.c, exposed in the sys module - new module called 'zipimport' - various changes to allow bootstrapping from zip files I hope I didn't break the Windows build (or anything else for that matter), but then again, it's been sitting on sf long enough... Regarding the latest discussions on python-dev: zipimport sets pkg.__path__ as specified in PEP 273, and likewise, sys.path item such as /path/to/Archive.zip/subdir/ are supported again.
-
- 25 Dec, 2002 1 commit
-
-
Just van Rossum authored
-
- 13 Dec, 2002 1 commit
-
-
Jack Jansen authored
-
- 06 Dec, 2002 1 commit
-
-
Martin v. Löwis authored
-
- 29 Nov, 2002 1 commit
-
-
Just van Rossum authored
in imp". This adds two functions to the imp module: get_frozenmodules() and set_frozenmodules().
-
- 31 Aug, 2002 1 commit
-
-
Guido van Rossum authored
to 62011. This should get the snake-farm to throw away its old .pyc files, amongst others.
-
- 15 Aug, 2002 1 commit
-
-
Michael W. Hudson authored
[ 587993 ] SET_LINENO killer Remove SET_LINENO. Tracing is now supported by inspecting co_lnotab. Many sundry changes to document and adapt to this change.
-
- 30 Jun, 2002 1 commit
-
-
Martin v. Löwis authored
Rename all occurrences of MS_WIN32 to MS_WINDOWS.
-
- 17 Jun, 2002 1 commit
-
-
http://www.python.org/sf/566999Walter Dörwald authored
This patch enhances Python/import.c/find_module() so that unicode objects found in sys.path will be treated as legal directory names (The current code ignores anything that is not a str). The unicode name is converted to str using Py_FileSystemDefaultEncoding.
-
- 14 Jun, 2002 1 commit
-
-
Neal Norwitz authored
Write 4 bytes for co_stacksize, etc. to prevent writing out bad .pyc files which can cause a crash when read back in.
-
- 13 Jun, 2002 1 commit
-
-
Martin v. Löwis authored
-
- 30 May, 2002 2 commits
-
-
Guido van Rossum authored
in the mode (it's forbidden).
-
Jeremy Hylton authored
get_file() must convert 'U' to "r" PY_STDIOTEXTMODE before calling fopen(). imp_load_module() must accept 'r' or 'U' or something with '+'. Also reflow some long lines.
-
- 28 May, 2002 1 commit
-
-
Jack Jansen authored
in there, and convert it to "rb" (or "r" for non-universal-newline builds) before passing it to fopen(). Fixes #561326.
-
- 14 Apr, 2002 1 commit
-
-
Jack Jansen authored
Highlights: import and friends will understand any of \r, \n and \r\n as end of line. Python file input will do the same if you use mode 'U'. Everything can be disabled by configuring with --without-universal-newlines. See PEP278 for details.
-
- 11 Apr, 2002 1 commit
-
-
Jack Jansen authored
-
- 09 Apr, 2002 1 commit
-
-
Guido van Rossum authored
-
- 07 Apr, 2002 1 commit
-
-
Guido van Rossum authored
-
- 31 Mar, 2002 1 commit
-
-
Neal Norwitz authored
-
- 29 Mar, 2002 1 commit
-
-
Tim Peters authored
-
- 26 Feb, 2002 1 commit
-
-
Andrew MacIntyre authored
Python/ dynload_shlib.c // EMX port emulates dlopen() etc. for DL extensions import.c // changes to support 8.3 DLL name limit (VACPP+EMX) // and case sensitive import semantics importdl.h thread_os2.h
-
- 07 Feb, 2002 1 commit
-
-
Marc-André Lemburg authored
Fix for the UTF-8 decoder: it will now accept isolated surrogates (previously it raised an exception which causes round-trips to fail). Added new tests for UTF-8 round-trip safety (we rely on UTF-8 for marshalling Unicode objects, so we better make sure it works for all Unicode code points, including isolated surrogates). Bumped the PYC magic in a non-standard way -- please review. This was needed because the old PYC format used illegal UTF-8 sequences for isolated high surrogates which now raise an exception.
-
- 12 Jan, 2002 1 commit
-
-
Martin v. Löwis authored
-