Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch 775605: Cygwin pthread_sigmask() workaround patch | Jason Tishler | 2003-07-22 | 4 | -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 interpreter | Skip Montanaro | 2003-07-22 | 1 | -1/+1 |
| | |||||
* | Various tweaks to make the packages work better. Still not 100%, though. | Jack Jansen | 2003-07-22 | 1 | -4/+18 |
| | |||||
* | Files used for the 2.3rc1+ binary installer. This one has the size problem | Jack Jansen | 2003-07-22 | 2 | -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 Hettinger | 2003-07-22 | 1 | -3/+3 |
| | |||||
* | Windows fix: When PYTHONCASEOK is set, or for any other reason imports | Tim Peters | 2003-07-22 | 2 | -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 Drake | 2003-07-22 | 1 | -16/+18 |
| | | | | | | Part of SF patch #773007. Also fixed a number of mostly cosmetic markup errors. | ||||
* | Avoid a 301 permanent redirect. | Fred Drake | 2003-07-22 | 2 | -2/+2 |
| | | | | Part of SF patch #773007. | ||||
* | Avoid a few 301 permanent redirects. | Fred Drake | 2003-07-22 | 1 | -3/+3 |
| | | | | Part of SF patch #773007. | ||||
* | Avoid a 301 permanent redirect. | Fred Drake | 2003-07-22 | 1 | -1/+1 |
| | | | | Part of SF patch #773007. | ||||
* | readerThread(): Add max_retries to both DeadlockWrap() calls. This | Barry Warsaw | 2003-07-21 | 1 | -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 Jansen | 2003-07-21 | 1 | -4/+3 |
| | | | | This lead to a duplication of error messages (and installs). Fixes #764615. | ||||
* | Because plistlib doesn't catch all possible errors that can | Jack Jansen | 2003-07-21 | 1 | -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 Jansen | 2003-07-21 | 1 | -2/+2 |
| | | | | | Pimp crashed if you tried to install a non-installable package, in stead of printing a decent error message. Fixes #773450.. | ||||
* | test01_join(): Fix a test failure when run with "python -O". The | Barry Warsaw | 2003-07-21 | 1 | -1/+4 |
| | | | | setting of sCursor happened in an assert. | ||||
* | Repair mis-application of Jeremy's patch. Thanks, Neal! | Fred Drake | 2003-07-21 | 1 | -1/+1 |
| | |||||
* | Added note about the pyexpat memory leak fix. | Fred Drake | 2003-07-21 | 1 | -0/+5 |
| | |||||
* | Fix memory leak reported & discussed on the Python XML-SIG mailing list. | Fred Drake | 2003-07-21 | 1 | -5/+13 |
| | | | | | This patch was provided by Jeremy Kloth, and corresponds to pyexpat.c 1.77 in the PyXML CVS. | ||||
* | Clarify a statement regarding both shared and static library. | Fred Drake | 2003-07-21 | 1 | -5/+4 |
| | | | | Closes SF bug #774480. | ||||
* | Merge the old dumbdbm documetation into the new docs that have been added. | Fred Drake | 2003-07-21 | 2 | -59/+28 |
| | | | | Make some module references hyperlinks. | ||||
* | Merge 23c1-branch back into the head. Barry will send email about the | Tim Peters | 2003-07-21 | 2 | -6/+48 |
| | | | | | | 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). | ||||
* | Change \code to \verb, because TeX merges the two dashes into a | Andrew M. Kuchling | 2003-07-21 | 1 | -1/+1 |
| | | | | | | 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. | ||||
* | Minor typo | Barry Warsaw | 2003-07-20 | 1 | -2/+3 |
| | |||||
* | SF bug #774411: Typo in socket documentation | Raymond Hettinger | 2003-07-20 | 1 | -1/+1 |
| | |||||
* | Corrected release date for 2.3c1. | Tim Peters | 2003-07-18 | 1 | -1/+1 |
| | |||||
* | For my convenience in building installers, added a makes-sense-on-my-box | Tim Peters | 2003-07-18 | 1 | -1/+2 |
| | | | | choice to the list of places MS redistributables might be found. | ||||
* | Oh, well. | Jeremy Hylton | 2003-07-18 | 1 | -2/+0 |
| | |||||
* | Forgot the release date. | Jeremy Hylton | 2003-07-18 | 1 | -0/+2 |
| | |||||
* | This commit was manufactured by cvs2svn to create tag 'r23c1'.v2.3c1 | cvs2svn | 2003-07-18 | 1 | -0/+1 |
| | |||||
* | Repair operator error. | Jeremy Hylton | 2003-07-18 | 1 | -8/+3 |
| | |||||
* | SF patch 773476: NameError when there are no prefixes. | Jeremy Hylton | 2003-07-18 | 1 | -3/+9 |
| | |||||
* | up the b/w compatibility requirement to 2.2 | Just van Rossum | 2003-07-18 | 1 | -1/+1 |
| | |||||
* | Make sure mimetypes is reinitialized before running the tests. | Jeremy Hylton | 2003-07-18 | 1 | -0/+1 |
| | | | | | If some other test comes along and uses mimetypes, it will be initialized from the system files. | ||||
* | Restore the locale to "C" on exit. | Jeremy Hylton | 2003-07-18 | 1 | -2/+5 |
| | | | | | | 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. | ||||
* | Add introductory paragraphs | Andrew M. Kuchling | 2003-07-18 | 1 | -57/+69 |
| | | | | | | 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 | ||||
* | Add a few more items | Andrew M. Kuchling | 2003-07-18 | 1 | -5/+22 |
| | |||||
* | Complete the rewrite pass; add a few more items; bump version number to ↵ | Andrew M. Kuchling | 2003-07-17 | 1 | -113/+126 |
| | | | | 0.90; remove comment about draft status | ||||
* | The rest of the news. | Jeremy Hylton | 2003-07-17 | 1 | -22/+87 |
| | |||||
* | SF patch 764470 | Jeremy Hylton | 2003-07-17 | 1 | -0/+1 |
| | |||||
* | Update version label | Jeremy Hylton | 2003-07-17 | 1 | -2/+2 |
| | |||||
* | Partial progress on NEWS. | Jeremy Hylton | 2003-07-17 | 1 | -11/+55 |
| | |||||
* | SF bug 770601. | Jeremy Hylton | 2003-07-17 | 1 | -0/+1 |
| | |||||
* | Get socketmodule compiling on IRIX 6.5.10. | Jeremy Hylton | 2003-07-17 | 1 | -2/+11 |
| | | | | | | 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. | ||||
* | fix for bug 773020 - splitting PATH should use os.pathsep | Skip Montanaro | 2003-07-17 | 1 | -1/+1 |
| | |||||
* | Reflow long line. | Jeremy Hylton | 2003-07-17 | 1 | -2/+2 |
| | |||||
* | Remove inaccurate (and it turns out, entirely superfluous) declarations of | Michael W. Hudson | 2003-07-17 | 1 | -4/+0 |
| | | | | | | PyOS_InputHook and PyOS_ReadlineFunctionPointer). The inaccuracies were causing problems in framework builds on Mac OS X. | ||||
* | more markup chages | Fred Drake | 2003-07-17 | 1 | -33/+38 |
| | |||||
* | Remove unused variable. | Jeremy Hylton | 2003-07-17 | 1 | -2/+1 |
| | |||||
* | Include the GNU info format in the edist target since we're now | Fred Drake | 2003-07-17 | 1 | -1/+1 |
| | | | | building a fair portion of the documentation as info. | ||||
* | - remove mention of the isprivate flag, since that isn't directly | Fred Drake | 2003-07-17 | 1 | -15/+12 |
| | | | | | documented here, and according to Tim, should never have been there - misc. cleanups for consistency |