Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Patch #525870: Avoid duplicate stat calls, use st_ attributes. | Martin v. Löwis | 2002-03-18 | 1 | -4/+2 | |
| | ||||||
* | Fix for SF bug 528132 (Armin Rigo): classmethod().__get__() segfault | Guido van Rossum | 2002-03-18 | 2 | -0/+7 | |
| | | | | | | | | | | | The proper fix is not quite what was submitted; it's really better to take the class of the object passed rather than calling PyMethod_New with NULL pointer args, because that can then cause other core dumps later. I also added a testcase for the fix to classmethods() in test_descr.py. I've already applied this to the 2.2 branch. | |||||
* | dump the string exception fallback for anydbm.error. | Skip Montanaro | 2002-03-18 | 1 | -5/+2 | |
| | ||||||
* | initial test_anydbm module - based on test_dumbdbm.py | Skip Montanaro | 2002-03-18 | 1 | -0/+96 | |
| | ||||||
* | further work on dynamic reconfiguration; | Steven M. Gava | 2002-03-18 | 2 | -0/+34 | |
| | | | | keybindings | |||||
* | netrc will now raise a more predictable exception when $HOME is not set | Paul Prescod | 2002-03-18 | 1 | -1/+4 | |
| | | | | | | | | | (as it is often not on Windows). The code was always designed so that it would raise an IOError if there was no .netrc. But if there was no $HOME it would return a KeyError which would be somewhat unexpected for code that didn't know the algorithm it used to find .netrc. The particular code that triggered this problem for me was ftpmirror.py which handled the IOError gracefully, but not the KeyError. | |||||
* | added note that xmlrpclib won't marshal instances of subclasses of the | Skip Montanaro | 2002-03-17 | 1 | -1/+3 | |
| | | | | builtin types | |||||
* | restructure a bit to not rely on test case execution ordering | Skip Montanaro | 2002-03-17 | 1 | -4/+28 | |
| | | | | add test case for bug #482460 | |||||
* | Regenerated for Irix 6.5. | Jack Jansen | 2002-03-17 | 3 | -69/+776 | |
| | ||||||
* | Patch by Michael Pruett: make regen work on Irix 6.0 and 6.5. | Jack Jansen | 2002-03-17 | 1 | -1/+2 | |
| | ||||||
* | SF patch 530070: pydoc regression, from Martin and Guido. | Tim Peters | 2002-03-17 | 2 | -5/+30 | |
| | | | | | Change the way __doc__ is handled, to avoid blowing up on non-string __doc__ values. | |||||
* | Patch #430706: Persistent connections in BaseHTTPServer. | Martin v. Löwis | 2002-03-17 | 4 | -40/+145 | |
| | ||||||
* | Patch #485959: Various changes to Tix demos. | Martin v. Löwis | 2002-03-17 | 14 | -302/+401 | |
| | ||||||
* | Document that _POSIX_SEMAPHORES is predefined. | Martin v. Löwis | 2002-03-17 | 1 | -0/+4 | |
| | ||||||
* | Patch #525532: Add support for POSIX semaphores. | Martin v. Löwis | 2002-03-17 | 1 | -0/+119 | |
| | ||||||
* | Fix stupid typo in example. | Fred Drake | 2002-03-16 | 1 | -1/+1 | |
| | ||||||
* | Markup error: braces not properly marked in dictionary display | Fred Drake | 2002-03-16 | 1 | -1/+1 | |
| | | | | | grammer productions. Fixes SF bug #520959. | |||||
* | Clarify the descriptions of the positive and negative lookbehind assertions. | Fred Drake | 2002-03-16 | 1 | -9/+30 | |
| | | | | | Added examples of positive lookbehind assertions. This closes SF bug #529708. | |||||
* | pdfTeX 0.13 and 0.14 do not agree on the name of the macro, and I will not | Fred Drake | 2002-03-16 | 1 | -0/+8 | |
| | | | | | | change the installed version on either of the machines I use to format the docs. Instead, use a compatibility hack to support both versions. This is also better for external users of the Python styles. | |||||
* | Applet icon. | Jack Jansen | 2002-03-16 | 1 | -0/+0 | |
| | ||||||
* | Revise the markup related to the grammar productions to increase the | Fred Drake | 2002-03-15 | 7 | -98/+95 | |
| | | | | | | level of predictability. This is not really "good" markup, but is arguably better than we had before. This closes SF bug #523117. | |||||
* | Make the release status obvious in the title area. | Fred Drake | 2002-03-15 | 2 | -2/+2 | |
| | ||||||
* | Patch #530105: Allow file object may to be subtyped | Martin v. Löwis | 2002-03-15 | 2 | -11/+11 | |
| | ||||||
* | (py-honor-comment-indentation, py-compute-indentation): Fix the | Barry Warsaw | 2002-03-15 | 1 | -3/+7 | |
| | | | | | | | | | implementation to match the documentation for py-honor-comment-indentation w.r.t. not nil or t value. In that case it should still ignore ## for indentation purposes. Closes SF bug #523825, w/ patch provided by Christian Stork (mod'd by Barry). Python 2.2.1 candidate. | |||||
* | Wrap a couple of long lines. | Fred Drake | 2002-03-15 | 1 | -2/+4 | |
| | ||||||
* | Corrected _localized_name.__getitem__ based on code in patch 503202 (which I | Skip Montanaro | 2002-03-15 | 1 | -7/+9 | |
| | | | | | thought was just a bug report, so didn't notice - doh!). This handles slicing, which v 1.23 didn't. | |||||
* | Patch #527427: minidom fails to use NodeList sometimes. | Martin v. Löwis | 2002-03-15 | 1 | -5/+5 | |
| | ||||||
* | Skip test_longexp for MacPython on Mac OS X. It triggers a pathological ↵ | Jack Jansen | 2002-03-15 | 1 | -1/+5 | |
| | | | | | | realloc slowdown. Some tests with shorter expressions lead me to the conclusion that it will eventually finish, but it may take a few weeks:-) 2.2.1 candidate. | |||||
* | Patch 527434: Avoid double inclusion of thread.o on Sol2.8. | Martin v. Löwis | 2002-03-15 | 2 | -212/+218 | |
| | ||||||
* | If no webbrowsers were found _tryorder would be empty, cmd would never be ↵ | Jack Jansen | 2002-03-15 | 1 | -0/+1 | |
| | | | | | | set and the "del cmd" would fail. Fixed. 2.2.1 candidate. | |||||
* | Patch #517521: Consider byte strings before Unicode strings | Martin v. Löwis | 2002-03-15 | 1 | -52/+60 | |
| | | | | in PyObject_Get/SetAttr. | |||||
* | .... | Michael W. Hudson | 2002-03-15 | 1 | -1/+1 | |
| | ||||||
* | Fix | Michael W. Hudson | 2002-03-15 | 1 | -2/+9 | |
| | | | | | | | | [ 530236 ] os.py assumes existence of statvfs_resul This was pretty dense of me. Sorry. 2.2.1 candidate. | |||||
* | Include Python.h first. Fixes #530159. | Martin v. Löwis | 2002-03-15 | 1 | -1/+1 | |
| | ||||||
* | make _localized_name instances work more like the tuples they replaced. In | Skip Montanaro | 2002-03-15 | 1 | -5/+12 | |
| | | | | | | particular, negative indexes work and they are limited by the actual length of the names they represent (weekday and month names). This closes bug #503202. | |||||
* | added test case to catch index errors with _localized_name class | Skip Montanaro | 2002-03-15 | 1 | -0/+4 | |
| | ||||||
* | first cut at skip-list for hp-ux 11 based upon input from Bill Lawler at HP. | Skip Montanaro | 2002-03-15 | 1 | -0/+30 | |
| | ||||||
* | Remove duplicate "import os" | Neal Norwitz | 2002-03-14 | 1 | -1/+0 | |
| | ||||||
* | Modifed for new included expat. | Jack Jansen | 2002-03-14 | 1 | -6/+14 | |
| | ||||||
* | Updated for new included expat and new waste. | Jack Jansen | 2002-03-14 | 1 | -0/+0 | |
| | ||||||
* | "Fix" for SF bug #520644: __slots__ are not pickled. | Guido van Rossum | 2002-03-14 | 2 | -0/+95 | |
| | | | | | | | | | | | As promised in my response to the bug report, I'm not really fixing it; in fact, one could argule over what the proper fix should do. Instead, I'm adding a little magic that raises TypeError if you try to pickle an instance of a class that has __slots__ but doesn't define or override __getstate__. This is done by adding a bozo __getstate__ that always raises TypeError. Bugfix candidate (also the checkin to typeobject.c, of course). | |||||
* | "Fix" for SF bug #520644: __slots__ are not pickled. | Guido van Rossum | 2002-03-14 | 1 | -1/+37 | |
| | | | | | | | | | As promised in my response to the bug report, I'm not really fixing it; in fact, one could argule over what the proper fix should do. Instead, I'm adding a little magic that raises TypeError if you try to pickle an instance of a class that has __slots__ but doesn't define or override __getstate__. This is done by adding a bozo __getstate__ that always raises TypeError. | |||||
* | Update master Windows buildno list to reflect impending 2.2.1c1. | Tim Peters | 2002-03-14 | 1 | -1/+1 | |
| | ||||||
* | News about zlib-1.1.4. | Tim Peters | 2002-03-14 | 1 | -0/+5 | |
| | ||||||
* | update text to refer to ServerProxy class in preference to Server, which is | Skip Montanaro | 2002-03-14 | 1 | -8/+11 | |
| | | | | only retained for backward compatibility with older versions of the library. | |||||
* | Move to zlib 1.1.4 on Windows (the new version that squashes the "double | Tim Peters | 2002-03-13 | 2 | -13/+12 | |
| | | | | | free" glitch). Bugfix candidate -- I'll backpatch this into 2.2.1 later this week. | |||||
* | Describe how to support the iterator protocol in extension types. | Fred Drake | 2002-03-13 | 1 | -4/+60 | |
| | | | | This closes SF bug #420851. | |||||
* | SF #515015, raise exception if code not found in findsource() | Neal Norwitz | 2002-03-13 | 1 | -0/+1 | |
| | ||||||
* | Extend the list of special characters and magic markup used to produce them | Fred Drake | 2002-03-13 | 1 | -6/+10 | |
| | | | | | | to include various characters used in code samples, URLs, and other special contexts. This closes SF bug #525684. | |||||
* | Change the way \textasciitilde is implemented so it works more consistently | Fred Drake | 2002-03-13 | 1 | -1/+1 | |
| | | | | | (dropping tildes into data that still goes through LaTeX-like processing is a bad idea). |