Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch 533291. Deprecate None return form of __reduce__. | Raymond Hettinger | 2002-05-21 | 2 | -4/+12 |
| | |||||
* | Patch 543222. Disable script bindings in shell window. | Raymond Hettinger | 2002-05-21 | 3 | -0/+5 |
| | |||||
* | Add additional comments on the use of \deprecated. | Fred Drake | 2002-05-21 | 1 | -1/+4 |
| | |||||
* | Add IS_TRACKED and IS_MOVED macros. This makes the logic a little more clear. | Neil Schemenauer | 2002-05-21 | 1 | -7/+10 |
| | |||||
* | Patch 549187. Improve string formatting error message. | Raymond Hettinger | 2002-05-21 | 2 | -4/+4 |
| | |||||
* | Add availability information for a couple of the types, and notes on writing | Fred Drake | 2002-05-21 | 1 | -5/+10 |
| | | | | string-type tests for versions of Python built without Unicode support. | ||||
* | Another one. | Guido van Rossum | 2002-05-21 | 1 | -0/+1 |
| | |||||
* | Patches 558535. The standard Windows binding for Edit Select All | Raymond Hettinger | 2002-05-21 | 1 | -1/+1 |
| | | | | is Control-A rather than Alt-A. | ||||
* | Munge the RCS keywords to avoid updates, so the version number matches that | Fred Drake | 2002-05-21 | 1 | -1/+1 |
| | | | | | | of the PyUNIT version of the same file. This helps people understand that this version is the same as the version from the independent PyUNIT release (confusion was indicated on the PyUNIT mailing list). | ||||
* | Use types.StringTypes instead of explicit (str, unicode) list | Michael W. Hudson | 2002-05-20 | 1 | -1/+1 |
| | |||||
* | Guess what? --disable-unicode proofing. | Michael W. Hudson | 2002-05-20 | 1 | -4/+7 |
| | | | | This is a strange test. | ||||
* | More --disable-unicode stuff. | Michael W. Hudson | 2002-05-20 | 2 | -10/+15 |
| | | | | I'm getting better at vi! | ||||
* | Use types.StringTypes instead of (types.StringType, types.UnicodeType) -- | Michael W. Hudson | 2002-05-20 | 1 | -2/+2 |
| | | | | | | works better (at all!) in --disable-unicode builds. Bugfix candidate, probably. | ||||
* | tolerate --disable-unicode... | Michael W. Hudson | 2002-05-20 | 1 | -2/+3 |
| | |||||
* | More mindless --disable-unicode proofing. | Michael W. Hudson | 2002-05-20 | 1 | -23/+24 |
| | |||||
* | easy --disable-unicode proofing. | Michael W. Hudson | 2002-05-20 | 1 | -2/+4 |
| | |||||
* | Fix for | Michael W. Hudson | 2002-05-20 | 1 | -1/+1 |
| | | | | | | | | | | | [ 558249 ] softspace vs --disable-unicode And #endif was in the wrong place. Bugfix candidate, almost surely. I think I will embark on squashing test failures in --disable-unicode builds -- a Real Bug was hiding under them. | ||||
* | Add a bit of news about the email package fixes. | Barry Warsaw | 2002-05-20 | 1 | -0/+6 |
| | |||||
* | A test message w/ CRLF line endings | Barry Warsaw | 2002-05-19 | 1 | -0/+45 |
| | |||||
* | Add two new tests of recent email package fixes: CRLF line endings, | Barry Warsaw | 2002-05-19 | 1 | -0/+26 |
| | | | | and explicit maxlinelen arguments to the Header constructor. | ||||
* | I've thought about it some more, and I believe it is proper for the | Barry Warsaw | 2002-05-19 | 1 | -10/+20 |
| | | | | | | | | | | | | email package's Parser to handle the three common line endings. Certain protocols such as IMAP define CRLF line endings and it doesn't make sense for the client app to have to normalize the line endings before handing it message off to the Parser. _parsebody(): Be more flexible in the matching of line endings for finding the MIME separators. Accept any of \r, \n and \r\n. Note that we do /not/ change the line endings in the payloads, we just accept any of those three around MIME boundaries. | ||||
* | Fixed a bug in the splitting of lines, and improved the splitting for | Barry Warsaw | 2002-05-19 | 1 | -11/+29 |
| | | | | | | | | | | | | | | | | | single byte character sets. Also fixed a semantic problem with the constructor's default arguments. Specifically, __init__(): Change the maxlinelen argument default to None instead of MAXLINELEN. The semantics should have been (and now are) that if maxlinelen is given it is always honored. If it isn't given, but header_name is given, then the maximum line length is calculated. If neither are given then the default 76 characters is used. _split(): If the character set is a single byte character set then we can split the line at the maxlinelen because we know that encoding the header won't increase its length. If the charset isn't a single byte charset then we use the quicker divide-and-conquer line splitting algorithm as before. | ||||
* | Complete a merge of the mimelib project and the Python cvs codebases | Barry Warsaw | 2002-05-19 | 7 | -45/+168 |
| | | | | | | | | | | | | | for the email package. The former is now just a shell project that has some extra files for packaging for independent use (e.g. setup.py and README). Added a compatibility layer so that the same API can be used in Python 2.1 and 2.2/2.3 with the major differences shuffled off into helper modules (_compat21.py and _compat22.py). Also bumped the package version number to 2.0.3 for some fixes to be checked in momentarily. | ||||
* | Added Mitchell Surface's regression tests for base64. Closes patch #550002. | Raymond Hettinger | 2002-05-18 | 1 | -0/+59 |
| | |||||
* | Typo. | Guido van Rossum | 2002-05-16 | 1 | -1/+1 |
| | |||||
* | Fix broken reference, minor clarification. | Fred Drake | 2002-05-16 | 1 | -8/+10 |
| | |||||
* | Typo: build -> built | Fred Drake | 2002-05-16 | 1 | -1/+1 |
| | |||||
* | Added (with GvR's endorsement) Matthew Dixon Cowles | Raymond Hettinger | 2002-05-16 | 1 | -0/+1 |
| | | | | for his service on the Python-Help maillist. | ||||
* | Patch 547037. Corrected documentation to match | Raymond Hettinger | 2002-05-16 | 1 | -8/+6 |
| | | | | actual module behavior for adding newlines. | ||||
* | Back out #555929 | Martin v. Löwis | 2002-05-15 | 5 | -13/+24 |
| | |||||
* | Added missing index entries for mapping methods. Closes patch #548693. | Raymond Hettinger | 2002-05-15 | 1 | -1/+7 |
| | |||||
* | This is patch | Michael W. Hudson | 2002-05-15 | 1 | -28/+30 |
| | | | | | | | [ 555382 ] test_array v.s. --disable-unicode + MvL's suggestions. Just the 32 failing tests in --disable-unicode builds now... | ||||
* | Patch #555929: Cygwin AH_BOTTOM cleanup patch | Jason Tishler | 2002-05-15 | 5 | -24/+13 |
| | | | | | | | | | | | | This patch complies with the following request found near the top of configure.in: # This is for stuff that absolutely must end up in pyconfig.h. # Please use pyport.h instead, if possible. I tested this patch under Cygwin, Win32, and Red Hat Linux. Python built and ran successfully on each of these platforms. | ||||
* | Patch #553678: Cygwin Makefile.pre.in vestige patch | Jason Tishler | 2002-05-15 | 1 | -1/+0 |
| | | | | | | | | | | This patch removes a vestige part of the Cygwin make rules that didn't quite make it over during the flattening of the Makefiles. In its current form, it creates a def file but incorrectly calls it libpython$(VERSION).dll.a which immediately gets overwritten by the next command. Obviously, this is useless. It appears, it was useless in the old nested Makefile structure too. :,) | ||||
* | Added docstrings excerpted from Python Library Reference. | Raymond Hettinger | 2002-05-15 | 4 | -1/+121 |
| | | | | Closes patch 556161. | ||||
* | Fixed bug: Split RPC message into two parts instead of three | Chui Tey | 2002-05-14 | 1 | -1/+1 |
| | |||||
* | Minor wording changes, plus correct a typo. | Fred Drake | 2002-05-14 | 1 | -7/+7 |
| | |||||
* | Simplify code to remove an unnecessary test. | Fred Drake | 2002-05-14 | 1 | -2/+1 |
| | |||||
* | Use spaces, not tabs for indents. | Guido van Rossum | 2002-05-14 | 1 | -4/+4 |
| | | | | Raymond Hettinger, beware! This caused the Unix install to fail! | ||||
* | Added tests for new degree/radian conversions. | Raymond Hettinger | 2002-05-14 | 1 | -0/+2 |
| | |||||
* | Closes patch 529408 deprecating random.stdgamma(). | Raymond Hettinger | 2002-05-14 | 1 | -11/+35 |
| | |||||
* | smtp_RCPT(): Removed a somewhat embarrassing debugging line, found by | Barry Warsaw | 2002-05-14 | 1 | -3/+0 |
| | | | | | | Scot Stevenson. Could be a bug fix candidate, but probably doesn't matter much unless a certain blue-nosed cat suddenly becomes corporeal and starts emailing some stmp.py (sic) fronted mailer. | ||||
* | Closes SF bug 527139. Brings docs inline with random.py 1.29 | Raymond Hettinger | 2002-05-13 | 1 | -1/+1 |
| | | | | which fixes the unnecessarily restricted method domain. | ||||
* | Closes SF bug 527139. Moved temp variables inside guard. | Raymond Hettinger | 2002-05-13 | 1 | -7/+6 |
| | |||||
* | Correct gammavariate's method name and domain. | Raymond Hettinger | 2002-05-13 | 1 | -2/+2 |
| | | | | Partial solution to SF bug 527139. | ||||
* | Added typechecking to the individual python->CF converters, so we can use ↵ | Jack Jansen | 2002-05-13 | 1 | -2/+16 |
| | | | | them in the CF object initializers safely. | ||||
* | Added CFPreferences support. Added these as functions, not methods, which ↵ | Jack Jansen | 2002-05-13 | 3 | -3/+372 |
| | | | | seemed counter-intuitive. | ||||
* | Jim Fulton reported a segfault in dir(). A heavily proxied object | Guido van Rossum | 2002-05-13 | 2 | -7/+35 |
| | | | | | | | | returned a proxy for __class__ whose __bases__ was also a proxy. The merge_class_dict() helper for dir() assumed incorrectly that __bases__ would always be a tuple and used the in-line tuple API on the proxy. I will backport this to 2.2 as well. | ||||
* | SF 554663. Add OpenBSD3. Bugfix candidate if anyone cares. | Guido van Rossum | 2002-05-13 | 1 | -1/+1 |
| | |||||
* | SF 554073. Fix typo in error reporting of unrecognized character | Guido van Rossum | 2002-05-13 | 1 | -1/+1 |
| | | | | following IAC. Bugfix candidate if anyone cares. |