Staging
v0.8.1

sort by:
Revision Author Date Message Commit Date
aa4fef5 A makefile and setup script to create the bits that are part of MacPython but not of Apple's Panther distribution: the waste module, the IDE and BuildApplet applets. 29 August 2003, 22:46:25 UTC
3b47b81 _strptime.srptime() escaped parentheses in the format string properly. Closes bug #796149 . 29 August 2003, 02:34:22 UTC
60eaed1 Fix typo in docstring: The switch is '-x', not '-s'. 27 August 2003, 20:21:06 UTC
82adb7b remove extra word occurance; reported to webmaster 27 August 2003, 15:10:54 UTC
4fc4e2d Remove a typo. 27 August 2003, 10:49:34 UTC
eb85c66 SF bug #795506: Wrong handling of string format code for float values. Added missing support for '%F' as had been documented. 27 August 2003, 05:08:19 UTC
c519f01 test_largefile can leave its temp file open if one of many tests fail. On platforms (e.g., Cygwin) that are "particular" about open files, this will cause other regression tests that use the same temp file to fail: $ ./python.exe -E -tt Lib/test/regrtest.py -l test_largefile test_mmap test_mutants test_largefile test test_largefile failed -- got -1794967295L, but expected 2500000001L test_mmap test test_mmap crashed -- exceptions.IOError: [Errno 13] Permission denied: '@test' test_mutants test test_mutants crashed -- exceptions.IOError: [Errno 13] Permission denied: '@test' This patch solves the problem by adding missing "try/finally" blocks. Note that the "large" size of this patch is due to many white space changes -- otherwise, the patch is small. I tested this patch under Red Hat Linux 8.0 too. 26 August 2003, 11:59:41 UTC
f84d20a Make the derived tools amendable to cut and paste. 25 August 2003, 05:04:22 UTC
d19a275 Fixed doubled word typos. 25 August 2003, 04:44:33 UTC
ac5d6ac Fix double word typos. 25 August 2003, 04:34:46 UTC
411f458 SF bug #793702: Section 13.1 HTMLParser documentation error The -- is special to TeX and was printing as just -. 25 August 2003, 03:31:05 UTC
ca0609f Fix typo. Thou shalt not count to two unless proceeding to the number three. 23 August 2003, 03:47:56 UTC
59d6214 Fix typo. 23 August 2003, 03:39:28 UTC
c15f8b5 Missing "if". 22 August 2003, 16:27:03 UTC
89af2f6 Backporting email 2.5.4 fixes from the trunk. 19 August 2003, 04:56:46 UTC
f059147 Update get_param() description to reflect changes to the docstring. 19 August 2003, 04:51:25 UTC
d44c979 Describe the fix to the email package. 19 August 2003, 04:50:31 UTC
afa2448 Backport checkin: Fix a crash: when sq_item failed the code continued blindly and used the NULL pointer. (Detected by Michael Hudson, patch provided by Neal Norwitz). Fix refcounting leak in filtertuple(). 18 August 2003, 18:34:09 UTC
1dafa9e Remove a stray single quote. 18 August 2003, 17:54:10 UTC
27ea578 Backport improvements to set.py so that the interface will remain consistent across versions. * 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. * Added a PendingDeprecationWarning for 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. 17 August 2003, 22:08:58 UTC
fcc69f1 SF #784031: Byte-order bug in socket-module getaddrinfo.c 17 August 2003, 21:29:32 UTC
49ce872 Adjust some horizontal indentation to be consistent with the style used throughout the documentation. 16 August 2003, 06:31:21 UTC
bd9ba1a Make sets.py compatible with Py2.2 15 August 2003, 21:14:51 UTC
33f6aeb Backport checkin: Make a copy of L before appending, so the global L remains unchanged (and sys.gettotalrefcount() remains constant). Fix a few typos. 15 August 2003, 17:36:25 UTC
4c1392a Backport checkin: Fix refcounting leak in charmaptranslate_lookup() 15 August 2003, 16:52:33 UTC
906bb77 Backport checkin: Fix another refcounting leak in PyUnicode_EncodeCharmap(). 15 August 2003, 16:27:32 UTC
90de7fe Backport checkin: Fix another refcounting leak (in PyUnicode_DecodeUnicodeEscape()). 15 August 2003, 15:01:26 UTC
62748a1 Backport my fix to my fix: My last fix left n used unitialized in tha a==b case. Fix, by not using n at all in that case. 15 August 2003, 12:26:05 UTC
0708902 Backport checkin: Fix refcount leak in the UnicodeError constructor: When parsing the constructor arguments failed, a reference to the argument tuple was leaked. 14 August 2003, 21:00:28 UTC
9ee6975 Backport checkins: Fix refcount leak in PyUnicode_EncodeCharmap(). The bug surfaces 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(). 14 August 2003, 20:26:44 UTC
fa86fc5 SF patch #787929: reflect the introduce of boolean type(libcfgparser.tex) (Contributed by George Yoshida.) 14 August 2003, 20:01:40 UTC
d7d9571 And backport-2-3-4: Fix reference leak noted in test_types: Check for a[:] = a _before_ calling PySequence_Fast on a. 14 August 2003, 17:25:59 UTC
6b778e5 - IDLE didn't start correctly when Python was installed in "Program Files" on W2K and XP. Python Bugs 780451, 784183 14 August 2003, 15:15:02 UTC
0098d86 Backport checkins: * Enhance message for UnicodeEncodeError and UnicodeTranslateError. If there is only one bad character it will now be printed in a form that is a valid Python string. * Add a unicode prefix to the characters in the UnicodeEncodeError and UnicodeTranslateError message. 12 August 2003, 17:38:22 UTC
6c8980a SF patch#786531 'the the' typo. Contributed by George Yoshida 12 August 2003, 00:01:16 UTC
107638e SF patch#786531 'the the' typo. Contributed by George Yoshida 11 August 2003, 23:43:04 UTC
0eb81f2 Repeat my refcount & cut&paste fixes on the branch. 11 August 2003, 12:21:40 UTC
0347402 Unconditionally opening the temp file in text mode causes this test to fail under Cygwin. The attached patch corrects this problem. I tested this patch under Red Hat Linux 8.0 too. 11 August 2003, 12:13:45 UTC
3bc7980 Version number was wrong (2.3b1). Fixed. 11 August 2003, 11:16:09 UTC
4730b05 Add note of closing of bug #783952. 11 August 2003, 07:21:03 UTC
79ca4a4 Fix bug where handling issue of time.tzname[0] == time.tzname[1] and time.daylight were all true. Add an explicit test for this issue. Closes bug #783952 . 11 August 2003, 07:19:06 UTC
8cf915e SF bug #778964: bad seed in python 2.3 random The default seed is time.time(). Multiplied by 256 before truncating so that fractional seconds are used. This way, two consequetive calls to random.seed() are much more likely to produce different sequences. 09 August 2003, 18:20:16 UTC
6a55504 Add HIDDEN. Fixes #777664. 09 August 2003, 09:53:51 UTC
4b3d7fd Add HIDDEN. Fixes #777664. 09 August 2003, 09:53:51 UTC
144b440 Move initialization of sys.std{in,out}.encoding to Py_Initialize. Verify that the encoding actually exists. Fixes #775985. 09 August 2003, 09:48:29 UTC
59f31be Patch #771998: Put braces around variables. 09 August 2003, 09:07:56 UTC
b70e0dd SF patch #783807: Clarify PySequence_Setitem ref counting (Contributed by Jay T Miller.) 09 August 2003, 04:38:25 UTC
2ffc0f8 IDLEfork Bug 782759 config-main.def user configuration doc incorrect 09 August 2003, 03:10:01 UTC
91b75cf Explain argument unpacking 08 August 2003, 23:31:35 UTC
f45fe22 SF bug #770485: cStringIO does not set closed attr 08 August 2003, 12:22:30 UTC
ea86856 SF bug #775836: change 0,1 to False,True in dict.has_key doc 08 August 2003, 11:05:59 UTC
362545e Improve docs: * Simplify the pure python examples * Add a quantify() example 08 August 2003, 02:41:53 UTC
9f36f5b Fix docstring for LocaleTime. 08 August 2003, 01:52:08 UTC
9ea4970 Fix hyperlinks and one class reference. Backported from trunk, but to the right branch this time. 07 August 2003, 16:10:28 UTC
2c1b927 control where this lands by default in dev/doc/ on python.org, but check it in on the right branch this time 07 August 2003, 16:05:08 UTC
40b4a6b As penance for forgetting to flag my last checkins as bugfix candidates, just do the backport. These changes do not apply to release22-maint. 07 August 2003, 15:08:55 UTC
a247191 Release host name memory. Fixes #783312. 07 August 2003, 11:56:23 UTC
4e414f6 Fix wording of cache announcement. 07 August 2003, 05:27:42 UTC
e32a87a Re-introduction of caching. Not thread-safe against the changing of locale in the middle of executing time.strptime . Added new tests for caching mechanism; taken from 2.4 branch and tweaked appropriately. 06 August 2003, 21:17:09 UTC
23ce025 Backport doc update: Clarified that TypeErrors can be raised by any function (not just builtins). The issue arose in a thread on comp.lang.python. 06 August 2003, 06:57:38 UTC
dc72e56 Backport SF bug #782369: Massive memory leak in array module Fixed leak caused by switching from PyList_GetItem to PySequence_GetItem. Added missing NULL check. Clarified code by converting an "if" to an "else if". 06 August 2003, 06:55:09 UTC
3efb725 Backport typo fix 06 August 2003, 06:47:15 UTC
7fc99bd Demonstrate and fix [ 783882 ] os.lstat crashes with Unicode filename. Also checked in on trunk. 06 August 2003, 02:47:57 UTC
4b5c8d2 Remove __floordiv__ test, as it's deprecated. 05 August 2003, 16:12:09 UTC
520c7d0 Backport: * Check both __div__ and __truediv__ in division tests. (From SF patch #543867) * Remove useless import. 05 August 2003, 16:01:08 UTC
777f49b Patch #781722: Reject AF_INET6 if IPv6 is disabled. 05 August 2003, 06:26:46 UTC
43f87f9 Support trailing dots in DNS names. Fixes #782510. 05 August 2003, 06:20:23 UTC
9ea2f80 List recently-fixed bugs. 05 August 2003, 06:06:18 UTC
62aced0 Correct URL for normalization file. Fixes #781065. 05 August 2003, 05:59:47 UTC
e0ed620 Patch #781126: Fix markup for add_fallback. 05 August 2003, 05:54:48 UTC
8c6188c Make sure eol_convention is an ASCII string. Fixes #774680. 05 August 2003, 05:52:18 UTC
b496996 Boilerplate for Python 2.3.1 04 August 2003, 22:53:49 UTC
6b385b0 Bump version string. 04 August 2003, 22:52:27 UTC
b26f32f Merging release23-branch into the long-term Python 2.3 maintenance branch 04 August 2003, 22:49:46 UTC
23c72de This commit was manufactured by cvs2svn to create branch 'release23-maint'. 04 August 2003, 22:49:46 UTC
5a2e2c1 Get rid of empty sections 29 July 2003, 22:11:31 UTC
36c1afc SF bug 778400: IDLE hangs when selecting "Edit with IDLE". The fix is confined to the Windows installer. Not a bugfix candidate: the need for the new -n switch added here was introduced by moving to the idlefork IDLE (so this change isn't needed or helpful before 2.3). 29 July 2003, 17:22:57 UTC
b34ba3f Bump version number; record 2.3 release date 29 July 2003, 12:06:32 UTC
7a7aba9 Update release information. 29 July 2003, 03:20:32 UTC
96b49ff Bump version information. 29 July 2003, 03:11:34 UTC
7388dff Updated Windows installer for 2.3 final. 29 July 2003, 00:29:44 UTC
342aab1 Repaired botched release serial number. 29 July 2003, 00:25:20 UTC
f7e6091 Repair botched release serial number. 29 July 2003, 00:21:36 UTC
32675b6 Bump Windows build number for 2.3 final. 29 July 2003, 00:18:44 UTC
0963803 Added section for 2.3 final; moved IDLE news into it that I inserted in a wrong place over the weekend. 29 July 2003, 00:10:29 UTC
6cb2e0d Bump Windows resource version macro for 2.3 final. 29 July 2003, 00:08:01 UTC
2f99ae5 Bump release level to 2.3 (we won't have time for this tomorrow). 29 July 2003, 00:05:34 UTC
d50bd6c Update URL. 28 July 2003, 14:39:13 UTC
c794a1c Gave the main NEWS file its own IDLE section, and populated it with a blurb about ZoneAlarm (etc) nags. 27 July 2003, 20:23:49 UTC
220fecf Added a banner to the shell startup message discussing possible warnings from personal firewall software. Added the same text to README.txt, updated NEWS.txt for release. M NEWS.txt M PyShell.py M README.txt 27 July 2003, 03:24:19 UTC
7fbc304 Update for release. 27 July 2003, 00:56:41 UTC
ee924cd Bump the version number 25 July 2003, 03:13:02 UTC
49b5230 This commit was manufactured by cvs2svn to create tag 'r23c2'. 25 July 2003, 01:12:48 UTC
c0bf33e This is release candidate 2 25 July 2003, 01:12:48 UTC
0517c9a Updated news for 2.3c2. 25 July 2003, 01:09:40 UTC
d1f46c8 Don't export the SPB type as "SPB", because it shadows the method SPB, which is really important. This is a stopgap measure, as only the generated C code is adapted. Fixes #776533. 24 July 2003, 22:25:03 UTC
f31bd45 Added instructions on setting the proxy host. 24 July 2003, 21:46:40 UTC
2c24d42 Fixes bug of having default argument for TimeRE's __init__ that caused the LocaleTime instance to only be created once and thus not be recreated when the locale changed. 24 July 2003, 20:02:28 UTC
9a71475 Fix [ 776721 ] locale.setlocale() leaks Our saved locale was not being freed. Also check correct variable for NULL. 24 July 2003, 14:15:07 UTC
175ddb5 Remove caching of TimeRE (and thus LocaleTime) instance. Error was being caught when executing test_strptime, test_logging, and test_time in that order when the testing of "%c" occured. Suspect the cache was not being recreated (the test passed when test_logging was forced to re-establish the locale). 24 July 2003, 06:27:17 UTC
back to top