- 05 Mar, 2011 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
- 15 Agu, 2003 1 kayıt (commit)
-
-
Barry Warsaw yazdı
http://mail.python.org/pipermail/python-checkins/2003-April/035592.html so that Python 2.1-maint can be built on RedHat 9
-
- 14 Haz, 2003 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 13 Şub, 2003 1 kayıt (commit)
-
-
Guido van Rossum yazdı
and Zope 2.6 (which requires Python 2.1.x) isn't dead yet. Duh. The do_EOF() implementation was bogus. Make it more like do_quit() -- but print a blank line first.
-
- 09 Ock, 2003 3 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
like releasing 2.1.4 tomorrow. :-)
-
Guido van Rossum yazdı
urlparse.py. These were new features in 2.2, and shouldn't be added to 2.1 this late in the game. There was one use of urlsplit() in httplib.py (the urlparse.py change was done as part of a backport of a bugfix to httplib.py); this use is replaced with a call to urlparse() without changing the effect (only the returned netloc is used).
-
- 15 Eyl, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Address SF bug #577530: del __builtins__ breaks out of rexec Using the suggestion there: add_module() forces __builtin__ back; this fixes r_exec, r_eval, r_execfile. This does not mean that rexec is now considered safe! But for those willing to take the risk, it's safer than before. (Note that a safety analysis of the code module would be wise if you plan to use the interactive console for real -- I've only ever used it to play with restricted mode.)
-
- 04 Eyl, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Fix for SF bug 601077 by Zack Weinberg. The new execvpe code would sometimes do the wrong thing when a non-executable file existed earlier in the path and an executable file of the same name existed later in the path. This patch restores the proper behavior (which is to execute the second file). When only a non-executable file exists, the correct error is still reported.
-
- 29 Agu, 2002 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
Some IPv6-specific changes crept into the 2.1 branch when I backported other bug fixes.
-
- 27 Agu, 2002 3 kayıt (commit)
-
-
Fred Drake yazdı
since a documentation patch included \ulink. Adding this here makes back-porting further documentation patches easier than having to remove \ulink from the patches. Closes SF bug #598996.
-
Fred Drake yazdı
-
Fred Drake yazdı
Closes SF patch #600861.
-
- 08 Agu, 2002 3 kayıt (commit)
-
-
Fred Drake yazdı
the extension building phase.
-
Guido van Rossum yazdı
1) Do not attempt to exec a file which does not exist just to find out what error the operating system returns. This is an exploitable race on all platforms that support symbolic links. 2) Immediately re-raise the exception if we get an error other than errno.ENOENT or errno.ENOTDIR. This may need to be adapted for other platforms.
-
Guido van Rossum yazdı
-
- 12 Tem, 2002 2 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
Jeremy Hylton yazdı
Change _begin() back to begin(). Fix for SF bug 579107. Fix for SF bug #432621: httplib: multiple Set-Cookie headers Fix SF bug #575360 Handle HTTP/0.9 responses.
-
- 02 Tem, 2002 2 kayıt (commit)
-
-
Jeremy Hylton yazdı
The 2.1 maintenance branch is now identical to the trunk through rev 1.54 of httplib.py.
-
Jeremy Hylton yazdı
-
- 24 Haz, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
Fix typo.
-
- 20 Haz, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
(which makes it more clear). Closes SF bug #571767.
-
- 18 Haz, 2002 8 kayıt (commit)
-
-
Fred Drake yazdı
-
Fred Drake yazdı
hints about how to work around it. Closes SF bug #530637.
-
Fred Drake yazdı
when used as part of the import statement. Note that both "as" and "None" becoming keywords in the future. Closes SF bug #553262.
-
Fred Drake yazdı
Closes SF bug #551912.
-
Jeremy Hylton yazdı
# On a Linux with large file support (LFS) using a Python without LFS, # stat() will raise EOVERFLOW. This unambiguously indicates that the # file exists because it only occurs when the size of the file can't # find into the stat struct. This change is only needed for Python 2.1, because LFS is automatically configured starting with Python 2.2.
-
Guido van Rossum yazdı
-
Fred Drake yazdı
Based on patch contributed by Sean Reifschneider. Closes SF patch #570618.
-
Fred Drake yazdı
This closes SF patch #569832.
-
- 17 Haz, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
Closes SF bug #523473.
-
- 13 Haz, 2002 3 kayıt (commit)
-
-
Fred Drake yazdı
Closes SF bug #568577.
-
Fred Drake yazdı
constributed by David Abrahams. This closes SF patch #568081.
-
Fred Drake yazdı
Closes SF patch #567867. Added a couple of minor clarifications present in the 2.2.x and 2.3 version of the documentation which also apply to 2.1.x.
-
- 11 Haz, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
the semantics and presentation used in the library reference. Added an explanation of the use of [...] to denote optional arguments, since this is the only use of this in a signature line. Closes SF bug #567127.
-
- 01 Haz, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
if co_stacksize was > 32767 (the maximum value which can be stored in 16 bits (signed)), the PyCodeObject would be written wrong. So on the second import (reading the .pyc) would cause a crash. Since we can't change the PYC magic, we go on (silently), but don't write the file. This means everything will work, but a .pyc will not be written and the file will need to be parsed on each import.
-
- 31 May, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
SF bug 533625 (Armin Rigo). rexec: potential security hole If a rexec instance allows writing in the current directory (a common thing to do), there's a way to execute bogus bytecode. Fix this by not allowing imports from .pyc files (in a way that allows a site to configure things so that .pyc files *are* allowed, if writing is not allowed).
-
- 29 May, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
fixed an old buglet that caused bdb to be unable to continue in the botframe, after a breakpoint was set. the key idea is not to set botframe to the bottom level frame, but its f_back, which actually might be None. Additional changes: migrated old exception trick to use sys._getframe(), which exists both in 2.1 and 2.2 . Note: I believe Mark Hammond needs to look over his code now. F5 correctly starts up in the debugger, but later on doesn't stop at a given breakpoint any longer. kind regards - chris
-
- 21 May, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
-