- 23 Aug, 2003 1 commit
-
-
Greg Ward authored
Python 1.5.2 wrong in the section on config files.
-
- 20 Aug, 2003 2 commits
-
-
Thomas Heller authored
-
Thomas Heller authored
I have a different WISE version, and it's installed in a different directory. My sytem directory is somewhere else.
-
- 19 Aug, 2003 6 commits
-
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
-
Barry Warsaw authored
test_rfc2231_no_language_or_charset_in_boundary(), test_rfc2231_no_language_or_charset_in_charset(): New tests for proper decoding of some RFC 2231 headers. Backport candidate (as was the Utils.py 1.25 change) to both Python 2.3.1 and 2.2.4 -- will do momentarily.
-
Barry Warsaw authored
can be None, and what to do in that situation. get_filename(), get_boundary(), get_content_charset(): Make sure these handle RFC 2231 headers without a CHARSET field. Backport candidate (as was the Utils.py 1.25 change) to both Python 2.3.1 and 2.2.4 -- will do momentarily.
-
Barry Warsaw authored
charset and language fields are not present, e.g. as in: title*0="This%20is%20encoded"
-
- 18 Aug, 2003 3 commits
-
-
Tim Peters authored
which is a disaster on Windows. Restored the binary default of all previous releases. Also minor code cleanups. Bugfix candidate!
-
Walter Dörwald authored
NULL pointer. (Detected by Michael Hudson, patch provided by Neal Norwitz). Fix refcounting leak in filtertuple().
-
Thomas Heller authored
Will backport to release23-maint.
-
- 17 Aug, 2003 2 commits
-
-
Raymond Hettinger authored
-
Raymond Hettinger authored
* Relaxed the argument restrictions for non-operator methods. They now allow any iterable instead of requiring a set. This makes the module a little easier to use and paves the way for an efficient C implementation which can take better advantage of iterable arguments while screening out immutables. * Deprecated Set.update() because it now duplicates Set.union_update() * Adapted the tests and docs to include the above changes. * Added more test coverage including testing identities and checking to make sure non-restartable generators work as arguments. Will backport to Py2.3.1 so that the interface remains consistent across versions. The deprecation of update() will be changed to a FutureWarning.
-
- 16 Aug, 2003 3 commits
-
-
Fred Drake authored
throughout the documentation.
-
Raymond Hettinger authored
-
Raymond Hettinger authored
* Positive wording for the description of why < and > and = can all be False. * Move to a three column table format that puts long method names side-by-side with their operator equivalents * Mention that KeyError can be raised by Set.pop() and Set.remove(). * Minor tweaks to the examples. Will backport as soon as Fred rebuilds the docs so I can confirm the tables formatted properly
-
- 15 Aug, 2003 10 commits
-
-
Raymond Hettinger authored
-
Neal Norwitz authored
If opening a directory, the exception would leak.
-
Walter Dörwald authored
unchanged (and sys.gettotalrefcount() remains constant). Fix a few typos.
-
Walter Dörwald authored
-
Walter Dörwald authored
-
Walter Dörwald authored
-
Michael W. Hudson authored
[ 784825 ] fix obscure crash in descriptor handling Should be applied to release23-maint and in all likelyhood release22-maint, too. Certainly doesn't apply to release21-maint.
-
Michael W. Hudson authored
-
Michael W. Hudson authored
Fix, by not using n at all in that case. Needs to be applied to release23-maint, too.
-
Tim Peters authored
number. This accounts for the 2 refcount leaks per test_complex run Michael Hudson discovered (I figured only I would have the stomach to look for leaks in floating-point code <wink>).
-
- 14 Aug, 2003 9 commits
-
-
Neil Schemenauer authored
usually preferred.
-
Walter Dörwald authored
When parsing the constructor arguments failed, a reference to the argument tuple was leaked.
-
Neil Schemenauer authored
-
Walter Dörwald authored
when an encoding error occurs and the callback name is unknown, i.e. when the callback has to be called. The problem was that the fact that the callback has already been looked up was only recorded in a local variable in charmap_encoding_error(), because charmap_encoding_error() got it's own copy of the errorHandler pointer instead of a pointer to the pointer in PyUnicode_EncodeCharmap().
-
Raymond Hettinger authored
(Contributed by George Yoshida.)
-
Michael W. Hudson authored
Check for a[:] = a _before_ calling PySequence_Fast on a. release23-maint candidate Reference leak doesn't happen with head of release22-maint.
-
Fred Drake authored
the output was consumed would cause and exception to be raise in logmerge; suppress this specific error, because it's not helpful.
-
Kurt B. Kaiser authored
on W2K and XP. Python Bugs 780451, 784183 Backported to 2.2-maint
-
Fred Drake authored
-
- 13 Aug, 2003 1 commit
-
-
Andrew M. Kuchling authored
-
- 12 Aug, 2003 3 commits
-
-
Walter Dörwald authored
UnicodeTranslateError message.
-
Walter Dörwald authored
If there is only one bad character it will now be printed in a form that is a valid Python string.
-
Raymond Hettinger authored
-