Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #473002: Update Demo/tix tixwidgets.py et al. | Martin v. Löwis | 2001-11-11 | 7 | -154/+542 |
| | |||||
* | Add the MSL C library to the set of standard libraries | Jack Jansen | 2001-11-10 | 2 | -1/+37 |
| | | | | | | | linked against. Most, but not all, of it is included in PythonCore, but extensions may want to use some of the routines not included. Fixes a bug reported by Tom Loredo. | ||||
* | The libraries argument was completely ignored, fixed. Reported by | Jack Jansen | 2001-11-10 | 1 | -1/+2 |
| | | | | Tom Loredo. | ||||
* | Patch #473265: UpdatePairedHandlers nonsensical. | Martin v. Löwis | 2001-11-10 | 1 | -3/+3 |
| | |||||
* | Merge 1.42 from PyXML: Flag errors resulting from argument conversion problems. | Martin v. Löwis | 2001-11-10 | 1 | -2/+1 |
| | | | | Fixes problem with not detecting UTF-8 errors. | ||||
* | Fixed various problems with command-dot handling (some very old): | Jack Jansen | 2001-11-10 | 1 | -45/+52 |
| | | | | | | | | | | - Don't scan for cmd-. unless in the foreground - Scan before switching out to other processes, not after - don't scan if SchedParams.check_interrupt is false (!) - But: do scan if we're blocked on I/O One problem remains: in the last case KeyboardInterrupt is raised too late. | ||||
* | Added version annotations, remove hard tabs. | Fred Drake | 2001-11-09 | 1 | -7/+11 |
| | |||||
* | Use PyObject_CheckReadBuffer(). | Jeremy Hylton | 2001-11-09 | 3 | -23/+5 |
| | |||||
* | Add PyObject_CheckReadBuffer(), which returns true if its argument | Jeremy Hylton | 2001-11-09 | 3 | -29/+83 |
| | | | | | | supports the single-segment readable buffer interface. Add documentation for this and other PyObject_XXXBuffer() calls. | ||||
* | No need to have documentation for a module which not accepted in the library. | Fred Drake | 2001-11-09 | 1 | -87/+0 |
| | |||||
* | Add note about assignment to __debug__ being an error. | Jeremy Hylton | 2001-11-09 | 1 | -0/+4 |
| | |||||
* | Include sys_getdefaultencoding in #ifdef Py_USING_UNICODE. Fixes #479571. | Martin v. Löwis | 2001-11-09 | 1 | -2/+2 |
| | |||||
* | open_the_file(): Explicitly set errno to 0 before calling fopen(). | Tim Peters | 2001-11-09 | 1 | -0/+1 |
| | |||||
* | getnameinfo() appears to raise socket.error instead of | Barry Warsaw | 2001-11-09 | 1 | -1/+1 |
| | | | | | socket.gaierror. :( This allows test_socket to pass on a RH6.1-ish Linux system. | ||||
* | Fix SF buf #480096: Assign to __debug__ still allowed | Jeremy Hylton | 2001-11-09 | 1 | -1/+0 |
| | | | | | | Easy enough to catch assignment in the compiler. The perverse user can still change the value of __debug__, but that may be the least he can do. | ||||
* | Fix SF buf #480096: Assign to __debug__ still allowed | Jeremy Hylton | 2001-11-09 | 2 | -3/+20 |
| | | | | | | Easy enough to catch assignment in the compiler. The perverse user can still change the value of __debug__, but that may be the least he can do. | ||||
* | Fiddle with new test cases -- verify that we get a sensible error | Jeremy Hylton | 2001-11-09 | 1 | -4/+7 |
| | | | | | | | message for bad mode argument -- so that it doesn't fail on Windows. It's hack. We know that errno is set to 0 in this case on Windows, so check for that specifically. | ||||
* | test_formatdate(): Dang. Typo. | Barry Warsaw | 2001-11-09 | 1 | -1/+1 |
| | |||||
* | test_formatdate(): Don't do the localtime test if we don't have | Barry Warsaw | 2001-11-09 | 1 | -10/+12 |
| | | | | strptime() -- I'm too lazy to code it otherwise. | ||||
* | open_the_file(): this routine has a borrowed reference to the file | Tim Peters | 2001-11-09 | 1 | -1/+0 |
| | | | | | | object, so the "Metroworks only" section should not decref it in case of error (the caller is responsible for decref'ing in case of error -- and does). | ||||
* | Add sys/types.h and stdio.h into getaddrinfo test, based on itojun's message | Martin v. Löwis | 2001-11-09 | 2 | -140/+144 |
| | | | | in http://mail.python.org/pipermail/python-dev/2001-November/018473.html | ||||
* | test_formatdate(): A test for email.Utils.formatdate(). | Barry Warsaw | 2001-11-09 | 1 | -0/+16 |
| | |||||
* | Forgot to import time. | Barry Warsaw | 2001-11-09 | 1 | -0/+1 |
| | |||||
* | Updated the documentation for formatdate(). | Barry Warsaw | 2001-11-09 | 1 | -5/+14 |
| | |||||
* | formatdate(): A better docstring. | Barry Warsaw | 2001-11-09 | 1 | -4/+7 |
| | |||||
* | Remove my name, probably bad style. | Thomas Heller | 2001-11-09 | 1 | -2/+0 |
| | |||||
* | formatdate(): An implementation to replace the one borrowed from | Barry Warsaw | 2001-11-09 | 1 | -1/+37 |
| | | | | | | | | | | rfc822.py. The old rfc822.formatdate() produced date strings using obsolete syntax. The new version produces the preferred RFC 2822 dates. Also, an optional argument `localtime' is added, which if true, produces a date relative to the local timezone, with daylight savings time properly taken into account. | ||||
* | Script to print undocumented symbols found in Python header files. | Thomas Heller | 2001-11-09 | 1 | -0/+99 |
| | |||||
* | Fix SF bug 468948 & 451295: urllib2 authentication problems | Jeremy Hylton | 2001-11-09 | 1 | -28/+12 |
| | | | | | | | | | | | | | | | | | | | Fix contributed by Jeffrey C. Ollie. I haven't tested the fix because the situation is non-trivial to reproduce. The basic solution is to get rid of the __current_realm attribute of authentication handlers. Instead, prevent infinite retries by checking for the presence of an Authenticate: header in the request object that exactly matches the Authenticate: header that would be added. The problem prevent authentication from working correctly in the presence of retries. Ollie mentioned that digest authentication has the same problem and I applied the same solution there. | ||||
* | Fix SF bug #479186: compiler generates bad code for "del" | Jeremy Hylton | 2001-11-09 | 1 | -0/+1 |
| | | | | | | | Fix by Neil Schemenauer. Visit the Subscript node when trying to find the operation for a statement. XXX Not sure if there are other nodes that should be visited. | ||||
* | Fix SF buf #476953: Bad more for opening file gives bad msg. | Jeremy Hylton | 2001-11-09 | 2 | -2/+17 |
| | | | | | | If fopen() fails with EINVAL it means that the mode argument is invalid. Return the mode in the error message instead of the filename. | ||||
* | A better new, unique object | Jeremy Hylton | 2001-11-09 | 1 | -1/+1 |
| | |||||
* | Fix memory leak. This is part of SF patch #478006. | Fred Drake | 2001-11-09 | 2 | -1/+2 |
| | |||||
* | Fix memory leak. This is (very!) similar to part of SF patch #478006. | Fred Drake | 2001-11-09 | 1 | -0/+1 |
| | |||||
* | Fixes to compile cPickle.c & socketmodule.c on cygwin and possibly | Michael W. Hudson | 2001-11-09 | 2 | -5/+10 |
| | | | | | other platforms that have funny ideas about whether addresses of functions in dlls are compile-time constants. | ||||
* | Cleaned up some markup stupidity and a usage problem reported by Detlef | Fred Drake | 2001-11-09 | 1 | -9/+19 |
| | | | | Lannert. Added descriptions of HTTP_PORT and HTTPS_PORT. | ||||
* | Fix a variety of typographical, grammatical, and clarity problems reported | Fred Drake | 2001-11-09 | 1 | -54/+62 |
| | | | | by Detlef Lannert. | ||||
* | Merge directory chooser into tkFileDialog. | Martin v. Löwis | 2001-11-08 | 2 | -54/+18 |
| | |||||
* | Clean up one comment, fix typos in others. | Fred Drake | 2001-11-08 | 1 | -7/+7 |
| | |||||
* | Backing out the fast path for interned string compares again as requested. | Marc-André Lemburg | 2001-11-08 | 1 | -15/+0 |
| | |||||
* | Patch #478654: Expose tk_chooseDirectory. | Martin v. Löwis | 2001-11-07 | 2 | -4/+14 |
| | | | | Also delegate kw arguments through ** calls. | ||||
* | Add fast-path for comparing interned (true) string objects. | Marc-André Lemburg | 2001-11-07 | 1 | -0/+15 |
| | | | | | | This patch boosts performance for comparing identical string object by some 20% on my machine while not causing any noticable slow-down for other operations (according to tests done with pybench). | ||||
* | Fix memory leaks detecting in bug report #478003. | Martin v. Löwis | 2001-11-07 | 2 | -5/+11 |
| | |||||
* | When referring to a formal parameter from the description, use the name given | Fred Drake | 2001-11-07 | 1 | -1/+1 |
| | | | | with the signature, not an ad hoc abbreviated form. | ||||
* | Another name! | Fred Drake | 2001-11-07 | 1 | -0/+1 |
| | |||||
* | apply() documentation: Remove a detail about the implementation that does | Fred Drake | 2001-11-07 | 1 | -5/+6 |
| | | | | | not affect the API. Clean up the text about call syntax apply() is equivalent to. Based on comments by Thomas Guettler. | ||||
* | SF bug #478949 Windows installer start menu registry. | Tim Peters | 2001-11-07 | 1 | -5/+7 |
| | | | | | | | | | | | I'm guessing at this, pending more info from the bug submitter. Wise changed how the %GROUP% vrbl got defined between versions 5.0a (used before Python 2.2) and 8.14, to hold the full path to Start Menu group instead of just the group name. If I'm guessing correctly, the info the bug report is complaining about is in one of the registry keys we set up that neither Windows nor Python cares about. We did store a full path there in 2.2b1 instead of just the group name; the patch cuts it back to just the name again. | ||||
* | Adjust the module synopsis to avoid margin overruns in the PDF format. | Fred Drake | 2001-11-06 | 2 | -5/+3 |
| | |||||
* | A variety of small cleanups, including one to avoid a margin overrun in the | Fred Drake | 2001-11-06 | 1 | -17/+15 |
| | | | | PDF version. | ||||
* | Remove stray quotes; probably left over from conversion from docstrings. | Fred Drake | 2001-11-06 | 1 | -1/+1 |
| |