Anthony Baxter [Wed, 5 Dec 2001 04:34:13 +0000 (04:34 +0000)]
backport of 1.12
check in for patch #430846
use faster code for base64.encodestring (courtesy of Mr. Tim Peters)
and for base64.decodestring (courtesy of Anthony Baxter)
Anthony Baxter [Wed, 21 Nov 2001 06:21:18 +0000 (06:21 +0000)]
backport of jeremy's 2.227:
Fix for SF bug [ #471928 ] global made w/nested list comprehensions
. Initially I was going to just rip out the bits of this that fixed this
bug, but the rest of the code looks (after a fair amount of staring at
it) like it's ok - variable renames, that sort of thing.
flames and "hey, no way!" to me, or to python-dev.
It felt safer to just go with the full patch, rather than butchering
it.
Anthony Baxter [Wed, 21 Nov 2001 05:41:03 +0000 (05:41 +0000)]
backport of tim's 2.66:
. SF bug [#467265] Compile errors on SuSe Linux on IBM/s390.
- errors.c, PyErr_Format: add a va_end() to balance the va_start().
Anthony Baxter [Wed, 21 Nov 2001 05:37:32 +0000 (05:37 +0000)]
backport of 2.8, after checking with MarkH
. Always pass a full path name to LoadLibraryEx(). Fixes some Windows 9x
problems. As discussed on python-dev
Anthony Baxter [Wed, 21 Nov 2001 05:01:44 +0000 (05:01 +0000)]
backport of patches 2.10, 2.11, 2.12, by MvL.
. Patch #455231: Support ELF properly on OpenBSD.
. Patch to bug #472202: Correctly recognize NetBSD before 199712.
. Move dlfcn.h block out of NetBSD block, assuming that NetBSD before
199712 didn't have dlfcn.h, or that it wouldn't conflict with the other
stuff defined.
Anthony Baxter [Wed, 21 Nov 2001 04:58:37 +0000 (04:58 +0000)]
backport of 2.8 by jack:
Patch by Jonathan Wight (slightly reformatted) to forestall loading the
same module twice, which apparently crashes Python. I could not test the
error condition, but in normal life it seems to have no adverse effects.
Also removed an unsued variable, and corrected 2 glaring errors (missing
'case' in front of a label).
Anthony Baxter [Thu, 1 Nov 2001 15:34:20 +0000 (15:34 +0000)]
one more for the night.
backport of 2.26:
Make the gc.collect() function respect the collection lock. This fixes
SF bug 476129: "gc.collect sometimes hangs".
Anthony Baxter [Thu, 1 Nov 2001 14:55:03 +0000 (14:55 +0000)]
backport of (merged) 1.43 and 1.44
initregex(): this function is declared void, so the recent change to
return NULL in an error case was itself an error.
initregex(): Check return value of PyErr_Warn() and propagate the exception
(if any.)
Anthony Baxter [Thu, 1 Nov 2001 14:43:51 +0000 (14:43 +0000)]
backport of 2.58:
Fix SF bug #474538: Memory (reference) leak in poller.register (Dave Brueck)
Replace some tortuous code that was trying to be clever but forgot to
DECREF the key and value, by more longwinded but obviously correct
code.
Anthony Baxter [Thu, 1 Nov 2001 14:39:41 +0000 (14:39 +0000)]
backport 2.56 from uncle tim:
Stop adding 3 to FD_SETSIZE -- it makes no sense. If it turns out it
actually does <wink>, perhaps an Insure run will catch it.
Also removed senseless Windows comment.
Anthony Baxter [Thu, 1 Nov 2001 14:37:48 +0000 (14:37 +0000)]
backport barry's 2.54:
select_select(): Closing bug #448351 the easy way, i.e. by changing
the "#ifdef MS_WINDOWS" to "#ifdef SELECT_USES_HEAP" and by
setting SELECT_USES_HEAP when FD_SETSIZE > 1024.
The indirection seems useful since this subtly changes the path
that "normal" Windows programs take (where Timmie sez FD_SETSIZE =
512). If that's a problem for Windows, he has only one place to
change.
Anthony Baxter [Thu, 1 Nov 2001 14:14:26 +0000 (14:14 +0000)]
partial backport of guido's 1.188.
Add sendall() method, which loops until all data is written or an
error occurs, and doesn't return a count. (This is my second patch
from SF patch #474307, with small change to the docstring for send().)
the 'partial' is because 1.188 also added a couple of Py_*_ALLOW_THREADS
wrappers around SSL_read and SSL_write, and I want to check those separately.
This is adding a new method to the socket object, which would normally
be a bad thing to do in a bugfix release - however, in this case, it
allows fixes for a nasty problem that would otherwise have a filthy
filthy fix to Get It Right. Still to-do is to patch the std library
modules to use sendall() where appropriate, rather than send().
Anthony Baxter [Thu, 1 Nov 2001 14:05:52 +0000 (14:05 +0000)]
backport of MvL's 1.180
Test for __sun instead of __sun__, since SUNWspro only defines the latter;
gcc defines both.
...must get sparc box at home out of cupboard for testing this stuff...
Anthony Baxter [Thu, 1 Nov 2001 14:00:11 +0000 (14:00 +0000)]
backport tim's 1.191:
PySocketSock_connect_ex(): On Windows, return the correct Windows exit
code. The patch is from Jeremy, and allows test_asynchat to run again.
Anthony Baxter [Thu, 1 Nov 2001 13:58:16 +0000 (13:58 +0000)]
backport (partially) jeremy's 1.178
Use PySocket_Err() instead of PyErr_SetFromErrno().
The former does the right thing on Windows, the latter does not.
The 'partial' is because the code's changed quite a lot and it's not clear
that the two that are still there of the form
return PyErr_SetFromErrno(SSLErrorObject);
can be replaced with PySocket_Err() - it looks like they need the new
PySSL_SetError, which is a tad large to be comfortable with just checking
in without reading it further.
Anthony Baxter [Thu, 1 Nov 2001 13:14:43 +0000 (13:14 +0000)]
backport of 2.114:
SF patch #459385 (Norman Vine): time.timezone fix for Cygwin.
(skipped whitespace normalisation section of patch - this is a bugfix,
not a beauty contest :)
Anthony Baxter [Thu, 1 Nov 2001 11:30:06 +0000 (11:30 +0000)]
backport fixes from 2.32 and 2.29:
Change the limit on the input size for b2a_base64 to what will fit in
memory, rather than the standard's 57.
This fixes SF bug #473009.
This closes bug #430849 (internal error produced by binascii.a2b_base64)
Fred Drake [Wed, 24 Oct 2001 19:52:14 +0000 (19:52 +0000)]
When describing "import *", add a level of indirection between "*" and the
set of names imported (the "public names"), adding a definition of "public
names" that describes the use of __all__.
This closes SF bug #473986.
Fred Drake [Mon, 22 Oct 2001 14:25:12 +0000 (14:25 +0000)]
Clarify that the resource module does not attempt to mask platform
differences by defining symbols not defined on particular platforms.
This closes SF bug #473433.
Guido van Rossum [Fri, 19 Oct 2001 15:13:51 +0000 (15:13 +0000)]
Merge in selected changes from profile.py on the trunk. Note that
this is *not* a simple-minded merge from the code on the trunk -- that
does too much other stuff to be 100% safe for the 2.1.2 release
(e.g. getting rid of HotProfile and OldProfile, changing some methods
into global functions, a new calibration API).
Add the test_profile.py module which verifies that the profiler works
as expected.
Thomas Heller [Fri, 19 Oct 2001 08:07:19 +0000 (08:07 +0000)]
The version number 1.0.2pre doesn't conform to the strict versioning
guidelines in distutils/version, resulting in failure when trying to
use distutils to install 4Suite (and perhaps other modules).
Fred Drake [Thu, 9 Aug 2001 22:00:32 +0000 (22:00 +0000)]
Remove lines that should never have been checked into this
release21-maint branch; I checked them in erroneously in revision
1.52.4.1 of this file; it looks like that entire revision was
operator error.
This reverts that checkin and closes SF bug #449613.
Jack Jansen [Sun, 29 Jul 2001 21:50:44 +0000 (21:50 +0000)]
These demos used silly refcon values when creating their windows. This effectuively caused Pythons automatic cleanup of windows on refcount reaching zero to be disabled.
Jack Jansen [Sun, 29 Jul 2001 21:23:18 +0000 (21:23 +0000)]
If you double-click a file with creator Pyth but owner != TEXT exit with a warning that this is not a script but an auxiliary document such as a preferrences file or an aplication template. This is a lot better than giving syntax errors on binary data:-)
Fix showstopper SF bug #442983: use of site.addsitedir() was broken
because it references the global dirs_in_sys_path which is deleted.
The fix avoids deleting that global.
(My email through python.org or digicool.com is non-functional at the
moment; use gvanrossum@home.com to reach me.)
Fred Drake [Thu, 19 Jul 2001 03:47:04 +0000 (03:47 +0000)]
Remove some false comments.
Reorganize so the initialization sequences does not bite us in the foot.
(There is no good reason to discard classes that clients may want to
subclass.)
Thomas Wouters [Mon, 16 Jul 2001 16:03:31 +0000 (16:03 +0000)]
Backport of AMK's checkin 2.52:
[Bug #438050]
Include sys/poll.h if it was found by the configure script. The OpenGroup
spec says poll.h is the correct header file to use, so that file is
preferred.
Thomas Wouters [Mon, 16 Jul 2001 15:45:20 +0000 (15:45 +0000)]
Fix SF #441664: Python crash on del of a slice of a mmap
Check for slice/item deletion, which calls slice/item assignment with a NULL
value, and raise a TypeError instead of coredumping. Bugreport and suggested
fix by Alex Martelli.
Thomas Wouters [Fri, 13 Jul 2001 15:10:55 +0000 (15:10 +0000)]
Expand the blob on Solaris to mention passing '-Xc' to compile Python
correctly. Note that 'faulty' should actually be spelled 'fawlty', but I
don't want those bugreports assigned to me ;)
Thomas Wouters [Thu, 12 Jul 2001 12:43:11 +0000 (12:43 +0000)]
Net result of Tim's checkins 2.28 through 2.31:
- SF but #417587: compiler warnings compiling 2.1.
Repaired *some* of the SGI compiler warnings Sjoerd Mullender
reported.
- Minor fiddling related to
SF patch 416251 2.1c1 mmapmodule: unused vrbl cleanup
- Fix the .find() method for memory maps.
1) it didn't obey the "start" parameter (and when it does, we must
validate the value)
2) the return value needs to be an absolute index, rather than
relative to some arbitrary point in the file
(checking CVS, it appears this method never worked; these changes
bring it into line with typical .find() behavior)
- Fix new compiler warnings. Also boost "start" from (C) int to long and
return a (C) long: PyArg_ParseTuple and Py_BuildValue may not let
us get at the size_t we really want, but C int is clearly too small
for a 64-bit box, and both the start parameter and the return value
should work for large mapped files even on 32-bit boxes. The code
really needs to be rethought from scratch (not by me, though ...).