summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* backport akuchling's checkin ofMichael W. Hudson2002-03-151-0/+1
| | | | | | | | | | | | revision 1.29 of asyncore.py [Bug #517554] When a signal happens during the select call in asyncore.poll, the select fails with EINTR, which the code catches. However, the code fails to clear the r/w/e arrays (like poll3 does), which means it acts as if every descriptor had received all possible events. Bug report and patch by Cesar Eduardo Barros
* Backport loewis' checkin ofMichael W. Hudson2002-03-153-190/+5
| | | | | | | | | revision 1.104 of ext.tex revision 1.4 of windows.tex revision 1.1 of building.tex removal of unix.tex Patch #500136: Update Update ext build documentation. 2.2.1 candidate.
* This commit was manufactured by cvs2svn to create branchcvs2svn2002-03-151-0/+143
| | | | 'release22-maint'.
* backport akuchling's checkin ofMichael W. Hudson2002-03-151-0/+29
| | | | | | revision 1.10 of test_cfgparser.py As part of fixing bug #523301, add a simple test of ConfigParser.write()
* backport akuchling's checkin ofMichael W. Hudson2002-03-151-0/+1
| | | | | | revision 1.6 of test_cfgparser As part of fixing bug #523301, add a simple test of ConfigParser.write()
* I presume this should go here.Michael W. Hudson2002-03-151-2/+2
| | | | | | | | | backport akuchling's checkin of revision 1.39 of ConfigParser.py [Bug #523301] ConfigParser.write() produces broken output for values that were originally rfc822-like line continuations. Modified version of a patch from Matthias Ralfs.
* backport jhylton's checkin ofMichael W. Hudson2002-03-151-1/+1
| | | | | | | | | | revision 2.2 of cellobject.h Cells are not VAR objects. Noted by Jason Orendorff, SF #520768. Bug fix candidate for 2.1 & 2.2.
* Remove duplicate "import os"Neal Norwitz2002-03-151-1/+0
|
* Update version number prior to release candidate.Fred Drake2002-03-142-2/+2
|
* Fiddle Windows installer to call this "2.2.1 release candidate 1".Tim Peters2002-03-141-4/+4
|
* Rename this build 2.2.1c1.Tim Peters2002-03-142-3/+3
|
* Fiddle Windows build number description.Tim Peters2002-03-141-1/+1
|
* zlib-1.1.4 news.Tim Peters2002-03-141-0/+7
|
* backport gvanrossum's checkin ofMichael W. Hudson2002-03-141-0/+10
| | | | | | revision 1.118 of test_descr.py Add a check that SF bug 516727 is really fixed.
* I don't understand it either...Michael W. Hudson2002-03-141-1/+2
| | | | | | | | | | backport jhylton's checkin of revision 1.7 of test_pyclbr.py Fix pyclbr test of httplib without really understanding pyclbr. It seems that the new class HTTP11 in httplib.test() isn't discoverable by pyclbr, which causes this test to fail.
* Move to zlib 1.1.4 on Windows (the new version that squashes the "doubleTim Peters2002-03-133-15/+14
| | | | | | | | | | | free" glitch). unicodeobject.c: squash compiler warnings. Noting that test_pyclbr currently fails in 2.2.1: test_others (__main__.PyclbrTest) ... ??? HTTP11 FAIL
* Describe how to support the iterator protocol in extension types.Fred Drake2002-03-131-4/+60
| | | | This closes SF bug #420851.
* SF #515015, raise exception if code not found in findsource()Neal Norwitz2002-03-131-0/+1
|
* Change the way \textasciitilde is implemented so it works more consistentlyFred Drake2002-03-131-1/+1
| | | | | (dropping tildes into data that still goes through LaTeX-like processing is a bad idea).
* Update docstrings to use te attribute names of the new structures returnedFred Drake2002-03-122-4/+7
| | | | | by stat and time functions. This closes SF patch #523271.
* Add a note that Py_None needs the same reference count treatment as anyFred Drake2002-03-121-1/+2
| | | | | other PyObject *. This closes SF bug #494007.
* "level" keyword argument in example should be "stacklevel".Fred Drake2002-03-121-1/+1
| | | | This closes SF bug #517684.
* Backport of 1.14:Jack Jansen2002-03-121-3/+7
| | | | mkalias() now also works for folders. Fixes bug #515830.
* Documentation for PyObject_GetIter(), contributed by Greg ChapmanFred Drake2002-03-111-3/+18
| | | | | (with only minor changes by Fred). This closes SF bug #498607.
* backport loewis' checkin ofMichael W. Hudson2002-03-111-2/+2
| | | | | | | revision 1.66 of ftplib.py Access the exception argument to see whether it starts with '500'. Fixes #527855.
* backport gvanrossum's checkin ofMichael W. Hudson2002-03-111-0/+3
| | | | | | | | | | revision 1.117 of test_descr.py Bugfix candidate. Adapter from SF patch 528038; fixes SF bug 527816. The wrapper for __nonzero__ should be wrap_inquiry rather than wrap_unaryfunc, since the slot returns an int, not a PyObject *.
* backport gvanrossum's checkin ofMichael W. Hudson2002-03-111-1/+1
| | | | | | | | | | revision 2.128 of typeobject.c Bugfix candidate. Adapter from SF patch 528038; fixes SF bug 527816. The wrapper for __nonzero__ should be wrap_inquiry rather than wrap_unaryfunc, since the slot returns an int, not a PyObject *.
* I *think* this should go in. May be wrong -- please howl in protestMichael W. Hudson2002-03-111-20/+34
| | | | | | | | | | | | if so. backport jhylton's checkin of revision 1.46 of httplib.py Fix SF bug 525520. Don't automatically add a Host: header if the headers passed to request() already has a Host key.
* backport tim_one's checkin ofMichael W. Hudson2002-03-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | | revision 2.111 of floatobject.c SF bug 525705: [2.2] underflow raise OverflowException. Another year in the quest to out-guess random C behavior. Added macros Py_ADJUST_ERANGE1(X) and Py_ADJUST_ERANGE2(X, Y). The latter is useful for functions with complex results. Two corrections to errno- after-libm-call are attempted: 1. If the platform set errno to ERANGE due to underflow, clear errno. Some unknown subset of libm versions and link options do this. It's allowed by C89, but I never figured anyone would do it. 2. If the platform did not set errno but overflow occurred, force errno to ERANGE. C89 required setting errno to ERANGE, but C99 doesn't. Some unknown subset of libm versions and link options do it the C99 way now. Bugfix candidate, but hold off until some Linux people actually try it, with and without -lieee. I'll send a help plea to Python-Dev.
* backport tim_one's checkin ofMichael W. Hudson2002-03-111-2/+1
| | | | | | | | | | | | | | | | | | | | | | | revision 2.28 of cmathmodule.c SF bug 525705: [2.2] underflow raise OverflowException. Another year in the quest to out-guess random C behavior. Added macros Py_ADJUST_ERANGE1(X) and Py_ADJUST_ERANGE2(X, Y). The latter is useful for functions with complex results. Two corrections to errno- after-libm-call are attempted: 1. If the platform set errno to ERANGE due to underflow, clear errno. Some unknown subset of libm versions and link options do this. It's allowed by C89, but I never figured anyone would do it. 2. If the platform did not set errno but overflow occurred, force errno to ERANGE. C89 required setting errno to ERANGE, but C99 doesn't. Some unknown subset of libm versions and link options do it the C99 way now. Bugfix candidate, but hold off until some Linux people actually try it, with and without -lieee. I'll send a help plea to Python-Dev.
* This has been declared to work.Michael W. Hudson2002-03-111-0/+35
| | | | | | | | | | | | | | | | | | | | | | | | backport tim_one's checkin of revision 2.45 of pyport.h SF bug 525705: [2.2] underflow raise OverflowException. Another year in the quest to out-guess random C behavior. Added macros Py_ADJUST_ERANGE1(X) and Py_ADJUST_ERANGE2(X, Y). The latter is useful for functions with complex results. Two corrections to errno- after-libm-call are attempted: 1. If the platform set errno to ERANGE due to underflow, clear errno. Some unknown subset of libm versions and link options do this. It's allowed by C89, but I never figured anyone would do it. 2. If the platform did not set errno but overflow occurred, force errno to ERANGE. C89 required setting errno to ERANGE, but C99 doesn't. Some unknown subset of libm versions and link options do it the C99 way now. Bugfix candidate, but hold off until some Linux people actually try it, with and without -lieee. I'll send a help plea to Python-Dev.
* backport tim_one's checkin ofMichael W. Hudson2002-03-111-5/+5
| | | | | | | | revision 2.248 of bltinmodule.c Docstring for filter(): Someone on the Tutor list reasonably complained that it didn't tell enough of the truth. Bugfix candidate (I guess -- it helps and it's harmless).
* backport jhylton's checkin ofMichael W. Hudson2002-03-111-1/+1
| | | | | | | | revision 1.295 of configure.in Add fix for AIX as reported by srubben in SF bug #477487. Untested, of course.
* Probably should have merged the two checkins to this file (oh well).Michael W. Hudson2002-03-111-4/+6
| | | | | | | | | | backport jhylton's checkin of revision 2.98 of abstract.c Fix leak of NotImplemented in previous checkin to PyNumber_Add(). If result == Py_NotImplemented, always DECREF it before assigning a new value to result.
* backport jhylton's checkin ofMichael W. Hudson2002-03-111-4/+3
| | | | | | | | | | revision 2.97 of abstract.c Fix for SF bug 516727: MyInt(2) + "3" -> NotImplemented PyNumber_Add() tries the nb_add slot first, then falls back to sq_concat. However, it didn't check the return value of sq_concat. If sq_concat returns NotImplemented, raise the standard TypeError.
* backport jhylton's checkin ofMichael W. Hudson2002-03-111-3/+21
| | | | | | | | | | | | | | | | | | | revision 1.45 of httplib.py SF bug report #405939: wrong Host header with proxy In August, Greg said this looked good, so I'm going ahead with it. The fix is different from the one in the bug report. Instead of using a regular expression to extract the host from the url, I use urlparse.urlsplit. Martin commented that the patch doesn't address URLs that have basic authentication username and password in the header. I don't see any code anywhere in httplib that supports this feature, so I'm not going to address it for this fix. Bug fix candidate.
* backport akuchling's checkin ofMichael W. Hudson2002-03-111-2/+12
| | | | | | | | | | revision 1.6 of libxmlrpclib.tex [Bug #486527] Note that the caller has to ensure there are no control characters in strings being passed via XML-RPC. Fix some typos. 2.2.1 bugfix candidate.
* I presume most of the fixes currently hitting the tree should go intoMichael W. Hudson2002-03-111-1/+1
| | | | | | | | | | 2.2.1, but it would be nice if people remembered to comment on their fixes' applicability! backport akuchling's checkin of revision 1.26 of webchecker.py [Bug #512799] urllib.splittype() returns a 2-tuple. (Reported by seb bacon)
* backport jhylton's checkin ofMichael W. Hudson2002-03-111-1/+1
| | | | | | | | | | | | revision 2.33 of cStringIO.c Fix SF bug #526518 The doc string for cStringIO suggested that str() of a StringIO object was equivalent to getvalue(). This was never true, so repair the doc string. (doctest would have helped here.) Bug fix candidate for any past versions.
* Backport of 1.22:Jack Jansen2002-03-103-497/+936
| | | | | | | Use waste included with CW in stead of separate package. (But a truer log message would have been "updated to current version of waste", as in MachoPython we use a normal standalone separate Waste distribution).
* Backport of 1.9 (missed last time around):Jack Jansen2002-03-101-2/+4
| | | | | | Changes by Donovan Preston (and a few minor ones by me) to make IDE run under MachoPython. Mainly making sure we don't call routines that don't exist and representing pathnames in a os.separator-neutral format.
* Add more explanation of how data_files is used (esp. where the files end upFred Drake2002-03-081-2/+13
| | | | in the installation and how that location is determined).
* backport jackjansen's checkin ofMichael W. Hudson2002-03-082-360/+364
| | | | | | | | | | | revision 1.294 of configure.in revision 1.285 of configure When testing for availability of pthreads without special compiler options or libraries also look for thread_detach. SGI has thread_create in libc but complete pthread support only in -lpthread. Fixes #522393. 2.2.1 candidate.Killed by signal 2.
* backport montanaro's checkin ofMichael W. Hudson2002-03-081-0/+1
| | | | | | | revision 1.18 of BaseHTTPServer.py add Content-Type header to error responses this closes patch 502080
* backport montanaro's checkin ofMichael W. Hudson2002-03-081-0/+4
| | | | | | | | revision 1.58 of pydoc.py add repr_str as alias for repr_string in both HTMLRepr and TextRepr classes - reflects the change in type("").__name__ between 2.1 and 2.2. The __name__ field is used to find a method to call for particular types.
* backport tim_one's checkin ofMichael W. Hudson2002-03-081-9/+5
| | | | | | | | | | | | revision 2.38 of mmapmodule.c SF bug 515943: searching for data with \0 in mmap. mmap_find_method(): this obtained the string to find via s#, but it ignored its length, acting as if it were \0-terminated instead. Someone please run on Linux too (the extended test_mmap works on Windows). Bugfix candidate.
* backport tim_one's checkin ofMichael W. Hudson2002-03-081-0/+25
| | | | | | | | | | | | revision 1.20 of test_mmap.py SF bug 515943: searching for data with \0 in mmap. mmap_find_method(): this obtained the string to find via s#, but it ignored its length, acting as if it were \0-terminated instead. Someone please run on Linux too (the extended test_mmap works on Windows). Bugfix candidate.
* "Shortcut" should be "short-circuit".Fred Drake2002-03-081-6/+7
| | | | This closes SF bug #526277.
* backport my checkin ofMichael W. Hudson2002-03-071-1/+7
| | | | | | revision 1.6 of structseq.c Guido pointed out that I was missing a couple decrefs.
* After some thinking, I decided to move all of this across ontoMichael W. Hudson2002-03-071-23/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | the branch. I don't think it can break code, so the only risk is introducing new bugs. In that vein, can I ask -checkins readers who have time to carefully look this over, check my refcounts &c? TIA. backport my checkin of revision 1.5 of structseq.c Apply (my) patch: [ 526072 ] pickling os.stat results round II structseq's constructors can now take "invisible" fields in a dict. Gave the constructors better error messages. their __reduce__ method puts these fields in a dict. (this is all in aid of getting os.stat_result's to pickle portably) Also fixes [ 526039 ] devious code can crash structseqs Thought needed about how much of this counts as a bugfix. Certainly #526039 needs to be fixed.