https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
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
98741af Bump release number. 24 July 2003, 01:22:50 UTC
6560a25 Update version numbers and dates for 2.3c2 -- we won't be able to do this during the day tomorrow, so doing it earlier than I'd like. 24 July 2003, 00:15:46 UTC
e004041 Bugfix for #775892: added -mno-fused-madd to BASECFLAGS on MacOSX. This makes test_coercion pass on Panther. Also added a note to NEWS that pythonw works again (it was broken in rc1). 23 July 2003, 22:17:28 UTC
6145a62 1. Python Bug 775541: Calltips error when docstring is None. Introduced by patch 769142. Fixed by patch 776062. KBK will backport net result to IDLE release22-maint and IDLEfork. 2. Update NEWS.txt and idlever for release. 23 July 2003, 15:42:14 UTC
a378864 Fix representation of ^= operator in __ixor__() documentation. Closes SF bug #776181. Should be backported. 23 July 2003, 15:18:03 UTC
18452a4 MacPython-OS9 has its own copy of the interrupt handling code. Added PyErr_SetInterrupt() here too. 23 July 2003, 11:39:28 UTC
1fb83c1 Don't force boot-disk-only install, for reasons unknown it causes more problems than it solves. In stead, put a warning near the top of the welcome message. Fixes (or, rather works around) bug #764975. 23 July 2003, 10:51:55 UTC
dffeaf4 Scripts runs with pythonw no longer had full window manager access due to the name change of Python.app/Contents/MacOS/python to Python.app/Contents/MacOS/Python. Fixes #776116. 23 July 2003, 10:49:17 UTC
5943b4a Restored commented-out line checked in by mistake. 23 July 2003, 00:30:39 UTC
9390dd5 locale-restoration code: Don't leave comparison to None implicit. For all I know, the original locale may be '' (I don't think that's possible, but ...), and if so we would certainly want to restore it. 23 July 2003, 00:30:11 UTC
36f7e93 Fred wasn't kidding -- there really are docs for the locale module <wink>. Obtain the original locale in the documented way. This way actually works for me. Restore the original locale at the end, instead of forcing to "C". Move the locale fiddling into the test driver instead of doing it as a side effect of merely importing the module. I don't know why the test is mucking with locale (and also added a comment saying so), but it surely has no justification for doing that as an import side-effect. Now whenever the locale-changing code executes, the locale-restoring code will also get run. 23 July 2003, 00:05:07 UTC
d1deac0 Fix error in test of not comparing against 0 item of a list 22 July 2003, 21:07:16 UTC
c23f39c Patch #775784: YA Cygwin expected regression test skip patch This patch just adds test_ioctl to the list of expected skips for Cygwin. 22 July 2003, 18:35:58 UTC
354e3d9 Change the zipimport implementation to accept files containing arbitrary bytes before the actual zip compatible archive. Zipfiles containing comments at the end of the file are still not supported. Add a testcase to test_zipimport, and update NEWS. This closes sf #775637 and sf #669036. 22 July 2003, 18:10:15 UTC
fac083d Patch 775605: Cygwin pthread_sigmask() workaround patch Cygwin's pthread_sigmask() implementation appears to be buggy. This patch works around this problem by using sigprocmask() instead. This patch is implemented in a general way so it could be used by other platforms too. If this approach is deemed too risky, then I can work up a patch that just hacks Python/thread_pthread.h for Cygwin. Note that I tested this patch against 2.3c1 under Red Hat Linux 8.0 too. [snip] And finally, I need someone to regenerate pyconfig.h.in and configure with the same versions of the autotools that are normally used by Python. Neal kindly regenerated pyconfig.h.in and configure for me. 22 July 2003, 15:20:49 UTC
5d6ceb4 more generic reference to python interpreter 22 July 2003, 14:37:42 UTC
12cb99b Various tweaks to make the packages work better. Still not 100%, though. 22 July 2003, 14:31:34 UTC
f753816 Files used for the 2.3rc1+ binary installer. This one has the size problem fixed. It also attempts to force boot-disk-only installs, but this seems to lead to a problem that you have to deselect and reselect the installation disk. If no-one comes up with a fix RSN I'll revert to the previous situation and explain in the readme that you cannot install on a non-system-disk. 22 July 2003, 13:45:26 UTC
88821f7 Important usability fix in itertools documentation. 22 July 2003, 06:33:13 UTC
291f14e Windows fix: When PYTHONCASEOK is set, or for any other reason imports are satisfied in a case-insensitive manner, the attempt to import (the non-existent) fcntl gets satisfied by FCNTL.py instead, and the tempfile module defines a Unix-specific _set_cloexec() function in that case. As a result, temp files can't be created then (blows up with an AttributeError trying to reference fcntl.fcntl). This just popped up in the spambayes project, where there is no apparent workaround (which is why I'm pushing this in now). 22 July 2003, 02:50:01 UTC
f1c9869 Avoid a 301 permanent redirect. Part of SF patch #773007. Also fixed a number of mostly cosmetic markup errors. 22 July 2003, 01:09:22 UTC
644a08c Avoid a 301 permanent redirect. Part of SF patch #773007. 22 July 2003, 01:09:22 UTC
700c890 Avoid a few 301 permanent redirects. Part of SF patch #773007. 22 July 2003, 00:52:42 UTC
ef13949 Avoid a 301 permanent redirect. Part of SF patch #773007. 22 July 2003, 00:49:11 UTC
e3ea281 readerThread(): Add max_retries to both DeadlockWrap() calls. This may cause some tests to fail but it prevents them from hanging. 21 July 2003, 23:01:34 UTC
40b2e83 We erronuously re-used the pimpinstaller object if there were multiple installs. This lead to a duplication of error messages (and installs). Fixes #764615. 21 July 2003, 22:11:07 UTC
a7203d1 Because plistlib doesn't catch all possible errors that can happen while parsing a plistfile feeding an ill-formatted file to pimp may cause an exception. As a stopgap we use an unqualified except and print an error message "Unspecified error, probably ill-formatted database". Fixes #765621. 21 July 2003, 22:03:14 UTC
749f481 Backport from r23c1-branch: Pimp crashed if you tried to install a non-installable package, in stead of printing a decent error message. Fixes #773450.. 21 July 2003, 20:47:11 UTC
e676c5e test01_join(): Fix a test failure when run with "python -O". The setting of sCursor happened in an assert. 21 July 2003, 18:43:33 UTC
f239c6d Repair mis-application of Jeremy's patch. Thanks, Neal! 21 July 2003, 17:22:43 UTC
01a4312 Added note about the pyexpat memory leak fix. 21 July 2003, 17:17:10 UTC
7b6caff Fix memory leak reported & discussed on the Python XML-SIG mailing list. This patch was provided by Jeremy Kloth, and corresponds to pyexpat.c 1.77 in the PyXML CVS. 21 July 2003, 17:05:56 UTC
55512dc Clarify a statement regarding both shared and static library. Closes SF bug #774480. 21 July 2003, 16:01:39 UTC
6c49709 Merge the old dumbdbm documetation into the new docs that have been added. Make some module references hyperlinks. 21 July 2003, 15:30:15 UTC
6a62725 Merge 23c1-branch back into the head. Barry will send email about the New Plan (releases to be made off the head, ongoing random 2.4 stuff to be done on a short-lived branch, provided anyone is motivated enough to create one). 21 July 2003, 14:25:23 UTC
0ceb9b1 Change \code to \verb, because TeX merges the two dashes into a hyphen, resulting in the output '-list-classifiers', not the correct '--list-classifiers'. I've verified that the line is now correct in the DVI, PDF, HTML, and ASCII versions. 21 July 2003, 12:49:46 UTC
d71a551 Minor typo 20 July 2003, 18:00:54 UTC
476fcae SF bug #774411: Typo in socket documentation 20 July 2003, 01:10:15 UTC
6601b13 Corrected release date for 2.3c1. 18 July 2003, 21:12:21 UTC
0dc4b10 For my convenience in building installers, added a makes-sense-on-my-box choice to the list of places MS redistributables might be found. 18 July 2003, 21:11:36 UTC
b434d49 Oh, well. 18 July 2003, 20:57:04 UTC
0ed18c2 Forgot the release date. 18 July 2003, 20:10:02 UTC
6a66a68 This commit was manufactured by cvs2svn to create tag 'r23c1'. 18 July 2003, 17:45:33 UTC
6d58bf6 Repair operator error. 18 July 2003, 17:45:33 UTC
bdf3b50 SF patch 773476: NameError when there are no prefixes. 18 July 2003, 17:24:07 UTC
a920a88 up the b/w compatibility requirement to 2.2 18 July 2003, 15:31:40 UTC
969a700 Make sure mimetypes is reinitialized before running the tests. If some other test comes along and uses mimetypes, it will be initialized from the system files. 18 July 2003, 15:13:37 UTC
096d986 Restore the locale to "C" on exit. If this doesn't happen, it leaves the locale in a state that can cause other tests to fail. For example, running test_strptime, test_logging, and test_time in that order. 18 July 2003, 03:19:20 UTC
95be8bd Add introductory paragraphs Remove comment about MacOS changes; I'm not going to have time to figure out what they are Move PEP 273 section into numeric order 18 July 2003, 02:12:16 UTC
6e73f9e Add a few more items 18 July 2003, 01:15:51 UTC
8744f12 Complete the rewrite pass; add a few more items; bump version number to 0.90; remove comment about draft status 17 July 2003, 23:56:58 UTC
8aca417 The rest of the news. 17 July 2003, 19:19:05 UTC
ed86003 SF patch 764470 17 July 2003, 19:18:50 UTC
fa2d0eb Update version label 17 July 2003, 17:58:38 UTC
ca9e21c Partial progress on NEWS. 17 July 2003, 17:57:58 UTC
dabc37c SF bug 770601. 17 July 2003, 17:23:30 UTC
fb509a3 Get socketmodule compiling on IRIX 6.5.10. I don't think the fix here is very good, but I'm not sure what would be better. In particular, we should not be defining _SGIAPI, but lots of things break if we remove it. 17 July 2003, 16:58:48 UTC
7f7e137 fix for bug 773020 - splitting PATH should use os.pathsep 17 July 2003, 16:45:43 UTC
bd9f520 Reflow long line. 17 July 2003, 16:31:00 UTC
afd43b5 Remove inaccurate (and it turns out, entirely superfluous) declarations of PyOS_InputHook and PyOS_ReadlineFunctionPointer). The inaccuracies were causing problems in framework builds on Mac OS X. 17 July 2003, 16:26:58 UTC
7a6b4f0 more markup chages 17 July 2003, 16:00:01 UTC
032fffe Remove unused variable. 17 July 2003, 15:56:07 UTC
0106e1d Include the GNU info format in the edist target since we're now building a fair portion of the documentation as info. 17 July 2003, 15:29:16 UTC
8836e56 - remove mention of the isprivate flag, since that isn't directly documented here, and according to Tim, should never have been there - misc. cleanups for consistency 17 July 2003, 15:22:47 UTC
2d4e988 back out the darwin supports_unicode_filenames patch; it causes deep problems with the tests 17 July 2003, 15:11:49 UTC
29dfcd1 Bump the release number to 2.3c1. 17 July 2003, 14:48:26 UTC
943277e Minor corrections. 17 July 2003, 14:47:12 UTC
e9a92aa Patch from John Anderson to enable VC 7.1 support. I tested against VC 7.0 and it caused no problems there. 17 July 2003, 14:41:07 UTC
de7cdb2 - put the GNU info packages in the same place as everything else - add a convenience target to create the package list directly 17 July 2003, 11:55:18 UTC
e5f15ff - update the list of documents for which GNU info is built - convert tabs to spaces 17 July 2003, 05:36:19 UTC
7262ca8 Bump version numbers. 17 July 2003, 05:30:38 UTC
ea690c4 - improve the description of how user-defined method objects get made - improve the description of attribute retrieval from classes and class instances - add brief documentation of static method and class method objects. 17 July 2003, 05:26:53 UTC
38d7c1b Note that Unicode strings are now supported in sys.path. SF patch #764594. 17 July 2003, 04:22:44 UTC
e8e241b Make the howto document class work properly with the pypaper.sty paper-size hook. SF patch #772550. 17 July 2003, 04:15:35 UTC
af4c505 Remove code that tried to warn about shadowing builtin names after a module had been compiled. It gives too many spurious warnings. 16 July 2003, 22:19:24 UTC
7555294 Remove code that tried to warn about shadowing builtin names after a module had been compiled. It gives too many spurious warnings. 16 July 2003, 22:04:11 UTC
bfa6872 Zap the C API subsection altogether for now. It's not actually usable from C yet anyway. 16 July 2003, 21:14:35 UTC
aa9b39f Mention list.index; more small textual changes 16 July 2003, 20:37:26 UTC
c760c6c Add reminder list of things to document; mention sys.getcheckinterval() and socket.timeout exception 16 July 2003, 20:12:33 UTC
6c733d3 Add mmap bugfix; typo and grammar fixes 16 July 2003, 20:11:34 UTC
2491cd9 expose the C API subsection which was hidden from LaTeX in a comment. In the info conversion the \comment LaTeX macro mapped to a Texinfo @ignore macro. Unfortunately, py2texi.el is not smart enough to avoid generating links to the @ignore'd section, which causes makeinfo to croak. Exposing this text is probably not the most correct thing to do, as this documentation really belongs in the C API manual. This does get the info files generated, however, which is a more practical goal considering the impending release of 2.3rc1. 16 July 2003, 19:46:07 UTC
4d6e8fe Clarify the lack of relationship between rich comparison operators. Prompted by a discussion on comp.lang.python. 16 July 2003, 19:40:23 UTC
71adf7e Doctest now examines all docstrings by default. Previously, it would skip over functions with private names (as indicated by the underscore naming convention). The old default created too much of a risk that user tests were being skipped inadvertently. Note, this change could break code in the unlikely case that someone had intentionally put failing tests in the docstrings of private functions. The breakage is easily fixable by specifying the old behavior when calling testmod() or Tester(). The more likely case is that the silent failure was unintended and that the user needed to be informed so the test could be fixed. 16 July 2003, 19:25:22 UTC
853276e Lots of markup cleanups to avoid warnings from the GNU info generation; these make sense even without that processing chain. 16 July 2003, 17:58:38 UTC
788617f Remove \versionchanged; the text was too complex for the GNU info conversion to support. Keep the content as normal content, with a note that this applies starting in Python 2.3. 16 July 2003, 16:19:08 UTC
f75d9fc Remove stray comments. 16 July 2003, 16:17:57 UTC
1c7a0ea Remove unnecessary check in tests for slots allowed. The !PyType_Check(base) check snuck in as part of rev 2.215, but was unrelated to the SF patch that is mentioned in the checkin comment. The test is currently unnecessary because base is set to the return value of best_bases(), which returns a type or NULL. 16 July 2003, 16:08:23 UTC
2cd7731 Minor text changes; update bug/patch count (quite a jump!) 16 July 2003, 14:44:12 UTC
bd5fdd9 Make it easier to figure out the where a menuselection starts and ends by controling the font. 16 July 2003, 14:01:56 UTC
a66b6c1 Cygwin instructions: - added missing period - added markup so it's easier to tell which names are special 16 July 2003, 13:50:28 UTC
bac1ea9 More pre-2.3 build tweaks for the OS/2 EMX port: - more clean up of the generated import library definiton (.DEF file) following checking of patch 770521, and tightening of the sed regexps. - use -O3 even with gcc 2.8.1 - worth nearly 10% with 2.3; worth nothing with 2.2.x. - clean up a couple of whitespace issues introduced by a cut'n'paste. 16 July 2003, 13:31:11 UTC
d24c767 A variety of markup-level adjustments. 16 July 2003, 05:17:23 UTC
back to top