summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update release information.Fred Drake2003-07-291-2/+2
|
* Bump version information.Fred Drake2003-07-291-1/+1
|
* Updated Windows installer for 2.3 final.Tim Peters2003-07-291-4/+4
|
* Repaired botched release serial number.Tim Peters2003-07-291-3/+3
|
* Repair botched release serial number.Tim Peters2003-07-291-1/+1
|
* Bump Windows build number for 2.3 final.Tim Peters2003-07-292-1/+3
|
* Added section for 2.3 final; moved IDLE news into it that I inserted inTim Peters2003-07-291-10/+37
| | | | a wrong place over the weekend.
* Bump Windows resource version macro for 2.3 final.Tim Peters2003-07-291-4/+4
|
* Bump release level to 2.3 (we won't have time for this tomorrow).Tim Peters2003-07-291-2/+2
|
* Update URL.Fred Drake2003-07-281-1/+1
|
* Gave the main NEWS file its own IDLE section, and populated it with aTim Peters2003-07-271-3/+13
| | | | blurb about ZoneAlarm (etc) nags.
* Added a banner to the shell startup message discussing possibleKurt B. Kaiser2003-07-273-2/+26
| | | | | | | | | 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
* Update for release.Kurt B. Kaiser2003-07-271-1/+1
|
* Bump the version numberBarry Warsaw2003-07-251-1/+1
|
* This commit was manufactured by cvs2svn to create tag 'r23c2'.v2.3c2cvs2svn2003-07-251-0/+1
|
* This is release candidate 2Barry Warsaw2003-07-251-1/+1
|
* Updated news for 2.3c2.Barry Warsaw2003-07-251-1/+25
|
* Don't export the SPB type as "SPB", because it shadows the method SPB,Jack Jansen2003-07-241-0/+3
| | | | | which is really important. This is a stopgap measure, as only the generated C code is adapted. Fixes #776533.
* Added instructions on setting the proxy host.Jack Jansen2003-07-241-0/+6
|
* Fixes bug of having default argument for TimeRE's __init__ that caused theBrett Cannon2003-07-241-2/+5
| | | | | LocaleTime instance to only be created once and thus not be recreated when the locale changed.
* Fix [ 776721 ] locale.setlocale() leaksMark Hammond2003-07-241-1/+3
| | | | | Our saved locale was not being freed. Also check correct variable for NULL.
* Remove caching of TimeRE (and thus LocaleTime) instance. Error was beingBrett Cannon2003-07-242-48/+23
| | | | | | 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).
* Bump release number.Fred Drake2003-07-242-2/+2
|
* Update version numbers and dates for 2.3c2 -- we won't be able to do thisTim Peters2003-07-246-13/+15
| | | | during the day tomorrow, so doing it earlier than I'd like.
* Bugfix for #775892: added -mno-fused-madd to BASECFLAGS on MacOSX.Jack Jansen2003-07-233-3/+8
| | | | | | This makes test_coercion pass on Panther. Also added a note to NEWS that pythonw works again (it was broken in rc1).
* 1. Python Bug 775541: Calltips error when docstring is None. IntroducedKurt B. Kaiser2003-07-233-4/+12
| | | | | | 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.
* Fix representation of ^= operator in __ixor__() documentation.Fred Drake2003-07-231-1/+1
| | | | Closes SF bug #776181. Should be backported.
* MacPython-OS9 has its own copy of the interrupt handling code. Added ↵Jack Jansen2003-07-231-0/+6
| | | | PyErr_SetInterrupt() here too.
* Don't force boot-disk-only install, for reasons unknown it causes moreJack Jansen2003-07-232-5/+8
| | | | | problems than it solves. In stead, put a warning near the top of the welcome message. Fixes (or, rather works around) bug #764975.
* Scripts runs with pythonw no longer had full window manager access dueJack Jansen2003-07-232-3/+3
| | | | | to the name change of Python.app/Contents/MacOS/python to Python.app/Contents/MacOS/Python. Fixes #776116.
* Restored commented-out line checked in by mistake.Tim Peters2003-07-231-1/+1
|
* locale-restoration code: Don't leave comparison to None implicit. ForTim Peters2003-07-232-2/+2
| | | | | 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.
* Fred wasn't kidding -- there really are docs for the locale module <wink>.Tim Peters2003-07-231-11/+20
| | | | | | | | | | | | | | 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.
* Fix error in test of not comparing against 0 item of a listBrett Cannon2003-07-221-1/+1
|
* Patch #775784: YA Cygwin expected regression test skip patchJason Tishler2003-07-221-0/+1
| | | | This patch just adds test_ioctl to the list of expected skips for Cygwin.
* Change the zipimport implementation to accept files containingThomas Heller2003-07-223-3/+31
| | | | | | | | | 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.
* Patch 775605: Cygwin pthread_sigmask() workaround patchJason Tishler2003-07-224-8/+25
| | | | | | | | | | | | | | | | | | 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.
* more generic reference to python interpreterSkip Montanaro2003-07-221-1/+1
|
* Various tweaks to make the packages work better. Still not 100%, though.Jack Jansen2003-07-221-4/+18
|
* Files used for the 2.3rc1+ binary installer. This one has the size problemJack Jansen2003-07-222-7/+9
| | | | | | | 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.
* Important usability fix in itertools documentation.Raymond Hettinger2003-07-221-3/+3
|
* Windows fix: When PYTHONCASEOK is set, or for any other reason importsTim Peters2003-07-222-3/+12
| | | | | | | | | | 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).
* Avoid a 301 permanent redirect.Fred Drake2003-07-221-16/+18
| | | | | | Part of SF patch #773007. Also fixed a number of mostly cosmetic markup errors.
* Avoid a 301 permanent redirect.Fred Drake2003-07-222-2/+2
| | | | Part of SF patch #773007.
* Avoid a few 301 permanent redirects.Fred Drake2003-07-221-3/+3
| | | | Part of SF patch #773007.
* Avoid a 301 permanent redirect.Fred Drake2003-07-221-1/+1
| | | | Part of SF patch #773007.
* readerThread(): Add max_retries to both DeadlockWrap() calls. ThisBarry Warsaw2003-07-211-2/+2
| | | | may cause some tests to fail but it prevents them from hanging.
* We erronuously re-used the pimpinstaller object if there were multiple installs.Jack Jansen2003-07-211-4/+3
| | | | This lead to a duplication of error messages (and installs). Fixes #764615.
* Because plistlib doesn't catch all possible errors that canJack Jansen2003-07-211-0/+5
| | | | | | | 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.
* Backport from r23c1-branch:Jack Jansen2003-07-211-2/+2
| | | | | Pimp crashed if you tried to install a non-installable package, in stead of printing a decent error message. Fixes #773450..