Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use string.ascii_letters instead of string.letters (SF bug #226706). | Fred Drake | 2001-07-20 | 1 | -3/+3 |
| | | | | Work-around a font-lock bogosity. | ||||
* | Use string.ascii_letters instead of string.letters. | Fred Drake | 2001-07-20 | 1 | -2/+2 |
| | | | | Remove unused import. | ||||
* | Added the constants ascii_letters, ascii_lowercase, and ascii_uppercase | Fred Drake | 2001-07-20 | 3 | -3/+33 |
| | | | | | to the string module. This was determined to be the right approach in SF bug #226706. | ||||
* | More Unicode corrections from MAL to match a post-2.2a1 change | Andrew M. Kuchling | 2001-07-20 | 1 | -23/+13 |
| | | | | | | | Mention additional new imaplib.py features (Don't expect to see an updated version of the Web page until around the 28th of July. Vacation time!) | ||||
* | Make the unicode-escape and the UTF-16 codecs handle surrogates | Marc-André Lemburg | 2001-07-20 | 2 | -24/+54 |
| | | | | | | | | correctly and thus roundtrip-safe. Some minor cleanups of the code. Added tests for the roundtrip-safety. | ||||
* | #ifdef out generation of \U escapes unless Py_UNICODE_WIDE. This | Guido van Rossum | 2001-07-20 | 1 | -0/+2 |
| | | | | | | | | | | #caused warnings with the VMS C compiler. (SF bug #442998, in part.) On a narrow system the current code should never be executed since ch will always be < 0x10000. Marc-Andre: you may end up fixing this a different way, since I believe you have plans to generate \U for surrogate pairs. I'll leave that to you. | ||||
* | Removed unnecessary section "Unicode literals"; all the discussion is | Fred Drake | 2001-07-20 | 1 | -6/+1 |
| | | | | | | | already present in the "String literals" section, including comments on the "u" prefix and the additional escape sequences used for Unicode. This relates to SF bug #442526. | ||||
* | Copying this 2.1.1 bugfix to the trunk: | Guido van Rossum | 2001-07-20 | 1 | -1/+0 |
| | | | | | | | | | Fix showstopper SF bug #442983: use of site.addsitedir() was broken because it references the global dirs_in_sys_path which is deleted. The fix avoids deleting that global. (My email through python.org or digicool.com is non-functional at the moment; use gvanrossum@home.com to reach me.) | ||||
* | Fix typo in description of raw strings: "value" --> "valid" | Fred Drake | 2001-07-20 | 1 | -1/+1 |
| | | | | This closes SF bug #443059. | ||||
* | apply patch item #416254 | Piers Lauder | 2001-07-20 | 1 | -3/+48 |
| | |||||
* | apply patch item #416253 | Piers Lauder | 2001-07-20 | 1 | -38/+115 |
| | |||||
* | fix missed conversion in ESR's string conversion | Piers Lauder | 2001-07-20 | 1 | -1/+1 |
| | |||||
* | A full Inno Setup script for Python, except for the few hard and esoteric | Tim Peters | 2001-07-20 | 1 | -0/+206 |
| | | | | | parts Inno has no good answer for (read the comments at the top of the script). | ||||
* | update in preparation for 0.8.1 alpha release | Steven M. Gava | 2001-07-20 | 1 | -0/+567 |
| | |||||
* | Remove the TENTATIVE marker from the now-historic Windows buildnos. | Tim Peters | 2001-07-20 | 1 | -2/+2 |
| | |||||
* | Bump release number to 1.00, while I'm at it | Andrew M. Kuchling | 2001-07-20 | 1 | -1/+1 |
| | |||||
* | bring up to date for 0.8.1 release | Steven M. Gava | 2001-07-20 | 2 | -4/+74 |
| | |||||
* | Regression test for the dircache module, contributed by Nick Mathewson. | Fred Drake | 2001-07-19 | 1 | -0/+62 |
| | | | | | Modified by Fred Drake. This closes SF patch #440827. | ||||
* | Test for the repr module, contributed by Nick Mathewson. | Fred Drake | 2001-07-19 | 1 | -0/+108 |
| | | | | This closes SF patch #440826. | ||||
* | Kill more warnings from the SGI compiler. | Fred Drake | 2001-07-19 | 2 | -2/+2 |
| | | | | Part of SF patch #434992. | ||||
* | Make more warnings go away on the SGI compiler. | Fred Drake | 2001-07-19 | 4 | -11/+6 |
| | | | | This is part of SF patch #424992. | ||||
* | Clean up some warnings from the SGI compiler. | Fred Drake | 2001-07-19 | 1 | -3/+3 |
| | | | | This is part of SF patch #434992. | ||||
* | Kill a warning on the SGI compiler. | Fred Drake | 2001-07-19 | 1 | -1/+1 |
| | | | | This is part of SF patch #434992. | ||||
* | Make the new docstrings better conform to Guido's style guide. | Fred Drake | 2001-07-19 | 1 | -7/+15 |
| | |||||
* | Remove warnings from the SGI compiler. | Fred Drake | 2001-07-19 | 2 | -7/+4 |
| | | | | This is part of SF patch #434992. | ||||
* | Elaborate a comment. | Fred Drake | 2001-07-19 | 1 | -1/+4 |
| | |||||
* | Added docstrings based on a patch by Evelyn Mitchell. | Fred Drake | 2001-07-19 | 1 | -11/+16 |
| | | | | This closes SF patch #440153. | ||||
* | Make sure path names inserted into ZIP files are normalized to use "/" as | Fred Drake | 2001-07-19 | 1 | -1/+12 |
| | | | | | | the directory separator, as required by the format specification. This closes SF bug #440693. | ||||
* | Add some test cases for ntpath.join(). | Tim Peters | 2001-07-19 | 1 | -3/+19 |
| | |||||
* | Cosmetic: break the long lines in test_ntpath.py, and get rid of its | Tim Peters | 2001-07-19 | 2 | -9/+14 |
| | | | | expected-output file. | ||||
* | Port getaddrinfo to MSVC++. | Martin v. Löwis | 2001-07-19 | 3 | -15/+15 |
| | |||||
* | SF bug #44271: os.path.expanduser problem w/o HOME set. | Tim Peters | 2001-07-19 | 1 | -6/+16 |
| | | | | | | | This is a Windows-specific glitch that's really due to that, e.g., ntpath.join("c:", "/abc") returned "/abc" instead of "c:/abc". Made join smarter. Bugfix candidate. | ||||
* | Added function xml.sax.saxutils.quoteattr(). | Fred Drake | 2001-07-19 | 4 | -4/+68 |
| | | | | This closes SF bug #440351. It should not be moved to Python 2.1.1. | ||||
* | Fis SF bug #442647: not all forms of legal future statements were | Guido van Rossum | 2001-07-19 | 1 | -3/+9 |
| | | | | parsed correctly. Now they are. | ||||
* | Thomas, I don't care about unset either, but setting PYTHONHOME= | Guido van Rossum | 2001-07-19 | 1 | -2/+1 |
| | | | | | | | doesn't work -- it actually prevents the extensions from being built properly. So I'm changing the "sharedmods" target to what I presume it was before: PYTHONPATH= ./$(PYTHON) $(srcdir)/setup.py build | ||||
* | Revise the Unicode section after getting comments from MAL, GvR, and others. | Andrew M. Kuchling | 2001-07-19 | 1 | -25/+49 |
| | | | | | Add new low-level API for interpreter introspection Bump version number. | ||||
* | Patch #442512: put block indices in the right byte order on bigendian systems. | Martin v. Löwis | 2001-07-19 | 1 | -2/+5 |
| | |||||
* | Use -Kpthread when trying to find out the size of pthread_t. | Martin v. Löwis | 2001-07-19 | 2 | -241/+249 |
| | |||||
* | Add a low-level API to access interpreters, for David Beazley. | Guido van Rossum | 2001-07-19 | 2 | -0/+32 |
| | | | | SF patch #436376. | ||||
* | Patch #418659: Fixes for UnixWare and ReliantUnix. | Martin v. Löwis | 2001-07-19 | 3 | -575/+598 |
| | | | | | | back-out 1.215 of configure.in and 1.34 of Makefile.pre.in Check for -Kpthread compiler support, and use this as the sole option for MT if available. | ||||
* | Replace __import__ with import as. | Martin v. Löwis | 2001-07-19 | 1 | -1/+1 |
| | |||||
* | Avoid the use of 'unset', which isn't available on all platforms. Fixes SF | Thomas Wouters | 2001-07-19 | 1 | -1/+1 |
| | | | | bug #442627. | ||||
* | minor tidy-ups ready for 0.8.1 alpha tarball release | Steven M. Gava | 2001-07-19 | 7 | -9/+31 |
| | |||||
* | Remove some false statements. | Fred Drake | 2001-07-19 | 1 | -4/+2 |
| | |||||
* | Remove some false comments. | Fred Drake | 2001-07-19 | 1 | -159/+156 |
| | | | | | | Reorganize so the initialization sequences does not bite us in the foot. (There is no good reason to discard classes that clients may want to subclass.) | ||||
* | Fill out the Unicode section, somewhat uncertainly | Andrew M. Kuchling | 2001-07-19 | 1 | -7/+24 |
| | |||||
* | Finish the "Other changes" section | Andrew M. Kuchling | 2001-07-19 | 1 | -34/+45 |
| | | | | | Bump version number Insert a few blank lines here and there | ||||
* | Fix a few typos | Andrew M. Kuchling | 2001-07-19 | 1 | -3/+3 |
| | |||||
* | Remove note about this being a draft document. | Andrew M. Kuchling | 2001-07-19 | 1 | -7/+1 |
| | | | | Note the actual date of 2.1's release | ||||
* | Look to the future: bump the version number. | Fred Drake | 2001-07-18 | 1 | -18/+29 |
| | | | | | | | Do more to ensure we don't do any more formatting than we need to. Use separate targets for the distribution packages for paper-based and non-paper-based formats; this avoids some extra packaging when a complete distribution is being built with both paper sizes. |