summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add labels to all \section and \subsection headings for use in references.Fred Drake2001-07-241-15/+15
|
* Changed findertools.move() to move() in movetotrash.Jack Jansen2001-07-241-1/+1
|
* Use HAVE_SNPRINTF, not HAVE_SPRINTF, for checking the availability ofThomas Wouters2001-07-241-1/+1
| | | | snprintf.
* Patch #443669: Permit _tkinter to build on cygwin32.Martin v. Löwis2001-07-241-3/+7
|
* Autocheck for snprintf, and use sprintf if it is not available.Martin v. Löwis2001-07-245-10/+14
| | | | | Remove declaration of h_errno, since it is supposedly declared in netdb.h. Changes proposed by itojun.
* Be more specific about corner cases in the description of the $ RE syntax,Fred Drake2001-07-231-4/+7
| | | | | | and include an example where the MULTILINE flag makes a real difference. This closes SF bug #441600.
* Oh, ok, so plainpager is probably marginally better.Fred Drake2001-07-231-1/+1
|
* If $TERM is "dumb" or "emacs", just dump the text instead of trying to runFred Drake2001-07-231-0/+2
| | | | | | "less". Patch contributed by Alex Convertry. This closes SF patch #443551.
* When explaining the enterabs() method, using the modern spelling of apply(),Fred Drake2001-07-231-3/+3
| | | | and relax the type of the argument list from tuple to sequence.
* Remove self-reference from the anydbm module.Fred Drake2001-07-231-1/+0
| | | | This closes SF patch #443788.
* Typo: Added missing "if".Fred Drake2001-07-231-1/+1
| | | | This is part of SF patch #442788.
* Add StopIteration to the list of exceptions *not* derived from StandardError.Fred Drake2001-07-231-3/+4
| | | | | Slightly re-word discussion of SystemExit and fork(). This is part of SF patch #443788.
* Convert the use of apply(f, args) to the new spelling: f(*args).Fred Drake2001-07-231-1/+1
| | | | This is part of SF patch #443788.
* Fix typo in comment.Neil Schemenauer2001-07-231-1/+1
|
* Add -E command line switch (ignore environment variables like PYTHONHOMENeil Schemenauer2001-07-2312-34/+59
| | | | and PYTHONPATH).
* Make this test work under Windows as well.Fred Drake2001-07-231-2/+5
|
* Test for the "glob" module, contributed by Nick Mathewson.Fred Drake2001-07-231-0/+110
| | | | | Heavily modified so this doesn't break on Windows. This closes SF patch #441175.
* Patch number #422106 by Greg Ball, to fix segmentationMoshe Zadka2001-07-231-0/+5
| | | | | | | fault in sys.displayhook. Please check this in on the 2.2a1 branch (or whatever is necessary to get it working next release)
* Alex Coventry (SF patch 441791).Guido van Rossum2001-07-231-0/+1
|
* SF Patch #441791, with changes: when "import foo.bar" fails with anGuido van Rossum2001-07-231-4/+16
| | | | | | | exception in the execution of bar, ensure that foo.bar exists. (Previously, while sys.modules['foo.bar'] would exist, foo.bar would only be created upon successful execution of bar. This is inconvenient; some would say wrong. :-)
* Whitespace normalization.Tim Peters2001-07-231-4/+3
| | | | Note: This test fails on Windows. Don't know why yet.
* Before declaring h_errno, do not check for Win32 only. Instead, do checkMartin v. Löwis2001-07-232-2/+2
| | | | whether h_errno is a macro.
* Tests for the "commands" module, contributed by Nick Mathewson.Fred Drake2001-07-231-0/+45
| | | | This closes SF patch #440291.
* New tests by Nick Mathewson, for the fpformat module.Fred Drake2001-07-231-0/+67
| | | | This closes SF patch #440290.
* Instead of accessing ss_family, cast sockaddr_storage to sockaddr and access ↵Martin v. Löwis2001-07-233-335/+335
| | | | sa_family.
* Leave the Inno script in better shape. Added registration of .py etcTim Peters2001-07-211-16/+51
| | | | | extensions -- but Inno uninstall doesn't restore previous ones (if any), so that's another step backwards.
* Set ai_addrlen even if there is no sa_len.Martin v. Löwis2001-07-211-0/+1
|
* Patch #401196: IPv6 extensions to the socket module.Martin v. Löwis2001-07-211-103/+546
| | | | | | | | New functions getnameinfo, getaddrinfo. New exceptions socket.gaierror, socket.herror. Various new constants, in particular AF_INET6 and error codes and parameters for getaddrinfo. AF_INET6 support in setipaddr, makesockaddr, getsockaddr, getsockaddrlen, gethost_common, PySocket_gethostbyaddr.
* Add item about the new xml.sax.saxutils.quoteaddr() function.Fred Drake2001-07-211-0/+4
|
* updated about info for 0.8.1 releaseSteven M. Gava2001-07-211-3/+3
|
* new material for 0.8.1 releaseSteven M. Gava2001-07-212-9/+30
|
* Silence warnings in MSVC++: hide unused variables, add constness back toMartin v. Löwis2001-07-213-7/+14
| | | | inet_pton/ntop, convert htons argument to u_short.
* Get started on 2.2a2 NEWS.Tim Peters2001-07-211-0/+17
|
* On WIndows, skip the part of test_dircache that can't work on Windows.Tim Peters2001-07-211-9/+15
|
* Whitespace normalization, plus:Tim Peters2001-07-215-19/+19
| | | | | | + test_quopri.py relied on significant trailing spaces. Fixed. + test_dircache.py (still) doesn't work on Windows (directory mtime on Windows doesn't work like it does on Unix).
* Corrected a section reference (title was wrong).Fred Drake2001-07-201-5/+8
| | | | | Added information on the return values of PyArg_ParseTuple() and PyArg_ParseTupleAndKeywords().
* Typo: PyArgs_ParseTuple --> PyArg_ParseTupleFred Drake2001-07-201-30/+62
| | | | | | Moved the PyArg_Parse*(), Py_BuildValue() functions to the Utilities chapter, added a minimal description and reference to the Extending manual for Py_BuildValue().
* Added information on Py_BuildValue().Fred Drake2001-07-201-0/+3
|
* Make the add*() helper functions more robust for use after intializationFred Drake2001-07-201-6/+33
| | | | | | | | is complete: recompute _dirs_in_sys_path each time these functions are entered after module initialization is complete, and reset before returning to user code. This closes SF patch #442983.
* Patch #429442 from Jason Tishler: Corrects sys.platform andAndrew M. Kuchling2001-07-203-381/+384
| | | | | distutils.util.get_platform() problems caused by the cruft contained in Cygwin's uname -s.
* Use string.ascii_letters instead of string.letters (SF bug #226706).Fred Drake2001-07-2015-18/+17
|
* Add a missing "\" to the markup.Fred Drake2001-07-201-1/+1
|
* Use string.ascii_letters instead of string.letters (SF bug #226706).Fred Drake2001-07-202-3/+9
| | | | | Move computation of sets of characters out of the body of the function that uses them.
* Use string.ascii_letters instead of string.letters (SF bug #226706).Fred Drake2001-07-201-3/+3
| | | | Work-around a font-lock bogosity.
* Use string.ascii_letters instead of string.letters.Fred Drake2001-07-201-2/+2
| | | | Remove unused import.
* Added the constants ascii_letters, ascii_lowercase, and ascii_uppercaseFred Drake2001-07-203-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 changeAndrew M. Kuchling2001-07-201-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 surrogatesMarc-André Lemburg2001-07-202-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. ThisGuido van Rossum2001-07-201-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 isFred Drake2001-07-201-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.