summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Backport of _Cmmodule.c 1.8 and cmsupport.py 1.6:Jack Jansen2002-03-252-2/+98
| | | | | | | | Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. Should finally fix 531398. 2.2.1 candidate. Also blacklisted some constants with definitions that were not Python-compatible.
* backport bwarsaw's checkin ofMichael W. Hudson2002-03-251-3/+4
| | | | | | | | | revision 4.8 of python-mode.el (py-temp-directory): Add /var/tmp to the list of directories this searches. This is added after /tmp. Closes SF bug #505488, except that /var/tmp comes after /tmp instead of the patch's suggestion of putting it before /usr/tmp.
* Backport of _Qdmodule.c 1.8, qdsupport.py 1.38:Jack Jansen2002-03-252-2/+935
| | | | | | | | Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. Should finally fix 531398. 2.2.1 candidate. Also blacklisted some constants with definitions that were not Python-compatible.
* Backport of _Dragmodule.c 1.8, dragsupport.py 1.10:Jack Jansen2002-03-252-2/+98
| | | | | | | | Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. Should finally fix 531398. 2.2.1 candidate. Also blacklisted some constants with definitions that were not Python-compatible.
* Backport of _Evtmodule.c 1.6, evtsupport.py 1.15:Jack Jansen2002-03-252-2/+95
| | | | | | | | Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. Should finally fix 531398. 2.2.1 candidate. Also blacklisted some constants with definitions that were not Python-compatible.
* Backport of _Fmmodule.c 1.6 and fmsupport.py 1.6:Jack Jansen2002-03-252-1/+55
| | | | | | | | Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. Should finally fix 531398. 2.2.1 candidate. Also blacklisted some constants with definitions that were not Python-compatible.
* Backport of _Icnmodule.c 1.5, icnsupport.py 1.7:Jack Jansen2002-03-252-1/+184
| | | | | | | | Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. Should finally fix 531398. 2.2.1 candidate. Also blacklisted some constants with definitions that were not Python-compatible.
* Backport of _Qdoffsmodule.c 1.7, qdoffssupport.py 1.8:Jack Jansen2002-03-252-2/+74
| | | | | | | | Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. Should finally fix 531398. 2.2.1 candidate. Also blacklisted some constants with definitions that were not Python-compatible.
* Backport of _TEmodule.c 1.8, tesupport.py 1.10:Jack Jansen2002-03-252-2/+152
| | | | | | | | Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. Should finally fix 531398. 2.2.1 candidate. Also blacklisted some constants with definitions that were not Python-compatible.
* Backport of _Qtmocule.c 1.7, qtsupport.py 1.19:Jack Jansen2002-03-252-2/+1217
| | | | | | | | Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. Should finally fix 531398. 2.2.1 candidate. Also blacklisted some constants with definitions that were not Python-compatible.
* Backport of _Appmodule.c 1.10, appsupport.py 1.14:Jack Jansen2002-03-252-3/+204
| | | | | | | | Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. Should finally fix 531398. 2.2.1 candidate. Also blacklisted some constants with definitions that were not Python-compatible.
* Backport of 1.20:Jack Jansen2002-03-251-0/+2
| | | | | | | | Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, in stead calling the missing routine will raise an exception. Should finally fix 531398. 2.2.1 candidate. Also blacklisted some constants with definitions that were not Python-compatible.
* Backport of 1.7:Jack Jansen2002-03-251-0/+1
| | | | Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, inAlso blacklisted some constants with definitions that were not Python-compatible.
* Backport of _AEmodule.c 1.10 and aesupport.py 1.26:Jack Jansen2002-03-252-2/+140
| | | | Weaklink most toolbox modules, improving backward compatibility. Modules will no longer fail to load if a single routine is missing on the curent OS version, inAlso blacklisted some constants with definitions that were not Python-compatible.
* Fix broken HTML in the head; this was reported by a user as causing Opera 6.01Fred Drake2002-03-221-1/+1
| | | | | to crash. The user has reported the problem to Opera, but we still should generate something that passes for HTML.
* I was just testing you. Neil Norwitz gets the prize. (Fixed a typoBarry Warsaw2002-03-221-1/+1
| | | | in the description of the email package patch.)
* Added a NEWS item for the fix of SF bug #531966 in the email package.Barry Warsaw2002-03-221-1/+17
| | | | | Also, added a header for 2.2.1c2 (if there isn't a c2, change this to 2.2.1 final).
* _handle_multipart(): Fixes for SF bug #531966. Specifically twoBarry Warsaw2002-03-221-2/+15
| | | | | | | | | | | | situations are handled now: a multipart/* containing no payload (i.e. never set), and a multipart/* containing a scalar payload (i.e. Message.add_payload() having been called exactly once, not passing in a sequence object). _make_boundary(): Fixed bogus cut-n-paste error (self as first arg). I will merge these changes into the standalone email package and Python 2.3 separately.
* test_no_parts_in_a_multipart(): A test for the layout of aBarry Warsaw2002-03-221-0/+76
| | | | | | | | | | | | | | | | multipart/mixed message with no attachments. test_one_part_in_a_multipart(): A test for the layout of a multipart/mixed message with a single attachment. test_seq_parts_in_a_multipart(): A test for the layout of a multipart/mixed message with a single attachment that happens to be a sequence of length one. These tests ensure no regressions on the fix for SF bug #531966. I will merge these into the standalone email package and Python 2.3 trunk separately.
* Backport of _Resmodule.c 1.10 and ressupport.py 1.21:Jack Jansen2002-03-222-2/+188
| | | | | | | Generate with weaklink stubs, so missing routines (on MacOS 8.6 and earlier) don't cause import failure. Fixes 531398, 2.2.1 candidate.
* I forgot to regenerate this. Oops.Michael W. Hudson2002-03-221-2/+2
|
* Merge of 1.13: checked in to convert from BinHex to AppleSingle.Jack Jansen2002-03-211-0/+0
|
* Merge rev. 1.5: Updated to new Universal Headers.Jack Jansen2002-03-211-0/+0
| | | | Also, this checkin should make the file MacBinary again.
* SF# 522426, add doc for common parameter for filecmp.cmpfiles()Neal Norwitz2002-03-201-0/+1
|
* Adjust some poor wording in the text that explains what events are usedFred Drake2002-03-191-27/+29
| | | | | for (reported by Keith Briggs). Wrap some very long lines.
* sync() has different return values depending on whether we build with GUSI ↵Jack Jansen2002-03-191-3/+5
| | | | or not.
* Files used for 2.2.1c1 distribution.Jack Jansen2002-03-194-2/+2
|
* char/unsigned char mixup.Jack Jansen2002-03-191-2/+2
|
* Clarify that copy_reg.pickle() is not intended for use with "classic" classes.Fred Drake2002-03-191-3/+5
| | | | | | This was stated before, but a minor grammatical error made it difficult to be sure of the meaning. This closes SF bug #530143.
* Record 2.2.1c1 release date.Tim Peters2002-03-192-3/+3
|
* To make 'urllib.py -t' run again, change FTP URL to a file that actuallyAndrew M. Kuchling2002-03-181-1/+1
| | | | exists.
* This commit was manufactured by cvs2svn to create tag 'r221c1'.v2.2.1c1cvs2svn2002-03-181-0/+1
|
* Fix up unescaped tilde; reported by several people.Fred Drake2002-03-181-1/+1
|
* Remove extra verb; reported by Detlef Lannert.Fred Drake2002-03-181-2/+1
|
* Backport of _CFmodule.c 1.11 and _Winmodule 1.8:Jack Jansen2002-03-182-2/+2
| | | | | Lurking bug found by patch for 531291: FSSpecs should be passed to Py_BuildValue by address, not by value.
* Backport of _Resmodule.c 1.10 and ressupport.py 1.20:Jack Jansen2002-03-182-95/+67
| | | | | Some of the newer routines return an OSErr, like most toolbox calls, in stead of depending on ResError(). Second half of fix for #531291.
* Make StringIO work in non-unicode builds.Michael W. Hudson2002-03-182-14/+15
| | | | | Lots of tests fail in non-unicode builds, but I think most of these are "bugs" in the tests. I hope so, anyway.
* backport jackjansen's checkin ofMichael W. Hudson2002-03-183-69/+776
| | | | | | | | revision 1.2 of ERRNO.py revision 1.2 of FILE.py revision 1.2 of IN.py Regenerated for Irix 6.5.
* backport jackjansen's checkin ofMichael W. Hudson2002-03-181-1/+2
| | | | | | revision 1.3 of regen Patch by Michael Pruett: make regen work on Irix 6.0 and 6.5.
* amk's fix attached toMichael W. Hudson2002-03-183-1/+26
| | | | [ 516299 ] urlparse can get fragments wrong
* Remove extraneous #define as per effbot's instructions in:Michael W. Hudson2002-03-181-2/+0
| | | | | | [ 530285 ] redefining SRE_CODE in Modules/sre.h Another one for the trunk, later.
* doerwalter's failing examples fromMichael W. Hudson2002-03-181-0/+8
| | | | [ 529104 ] broken error handling in unicode-escape
* Martin's fix forMichael W. Hudson2002-03-181-14/+24
| | | | | | | | [ 529104 ] broken error handling in unicode-escape I presume this will need to be fixed on the trunk, too. Later.
* FixMichael W. Hudson2002-03-181-7/+9
| | | | | | | | [ 531306 ] ucs4 build horked. Classic C mistake, I think. Also squashed a couple of warnings in the ucs4 build.
* Finished 2.2.1 release notes.Jack Jansen2002-03-181-2/+45
|
* Fix for SF bug 528132 (Armin Rigo): classmethod().__get__() segfaultGuido van Rossum2002-03-182-0/+7
| | | | | | | | | | | The proper fix is not quite what was submitted; it's really better to take the class of the object passed rather than calling PyMethod_New with NULL pointer args, because that can then cause other core dumps later. I also added a testcase for the fix to classmethods() in test_descr.py. I'll apply this to 2.3 too.
* A first cut at NEWS for 2.2.1c1.Michael W. Hudson2002-03-171-4/+54
| | | | | | | | | | | Please comment! You can find logs at http://starship.python.net/crew/mwh/cvslog3.txt on the assumption that you don't want to fight cvs yourself. In particular, I need a better explanation of the bugs that have been fixed in the email package.
* Backport a checkin of jvr's:Michael W. Hudson2002-03-171-1/+4
| | | | | | on MacOSX/Darwin, use ranlib when building static libs. I hope this belongs on the branch...
* Backport a checkin of lemburg's:Michael W. Hudson2002-03-171-1/+0
| | | | Remove mentioning of -U option in "python -h" output.
* Another Guido backport:Michael W. Hudson2002-03-171-3/+13
| | | | | Quick build: clarify that you have to do "make install" as root; OS info: add info about Red Hat's python and python2.