Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Solve sync() signature conflict differently: manually return 0 if | Jack Jansen | 2002-03-21 | 1 | -3/+5 |
| | | | | we have GUSI's void sync(). | ||||
* | New checkin to convert from BinHex to AppleSingle encoding. | Jack Jansen | 2002-03-21 | 1 | -0/+0 |
| | |||||
* | Patch #532729: check for sem_init in -lrt. | Martin v. Löwis | 2002-03-21 | 3 | -264/+313 |
| | |||||
* | Fix grammar | Neal Norwitz | 2002-03-21 | 1 | -1/+1 |
| | |||||
* | [Apply SF patch #504943] | Walter Dörwald | 2002-03-21 | 3 | -6/+23 |
| | | | | | | This patch makes it possible to pass Warning instances as the first argument to warnings.warn. In this case the category argument will be ignored. The message text used will be str(warninginstance). | ||||
* | Do not insert characters for unicode-escape decoders if the error mode | Martin v. Löwis | 2002-03-21 | 2 | -14/+32 |
| | | | | is "ignore". Fixes #529104. | ||||
* | [Apply patch #500457 from the PyXML tracker] | Andrew M. Kuchling | 2002-03-20 | 1 | -0/+9 |
| | | | | | | Add iterator support to pulldom.DOMEventStream New feature, so not a bugfix candidate (though it should be safe for inclusion) | ||||
* | Remove compiler warnings on Solaris 8. | Neal Norwitz | 2002-03-20 | 4 | -3/+5 |
| | | | | Can go into 2.2.x, but not necessary. | ||||
* | Change raw "except:" constructs to pass on KeyboardInterrupt. | Tim Peters | 2002-03-20 | 1 | -0/+4 |
| | | | | | Bugfix candidate? Don't know -- never bothered me, but it's minor either way. | ||||
* | SF# 522426, add doc for common parameter for filecmp.cmpfiles() | Neal Norwitz | 2002-03-20 | 1 | -0/+1 |
| | |||||
* | Make GzipFile an iterator. Closes bug #532621. | Neil Schemenauer | 2002-03-20 | 1 | -0/+10 |
| | |||||
* | Arrange to export the _PyMalloc_{Malloc, Realloc, Free} entry points. On | Tim Peters | 2002-03-20 | 1 | -3/+3 |
| | | | | | | | | | | | | | Windows some modules are considered (by me, and I don't care what anyone else thinks about this <wink>) to be part of "the core" despite that they happen to be compiled into separate DLLs (the "to DLL or not to DLL?" question on Windows is nearly arbitrary). Making the pymalloc entry points available to them allows the Windows build to complete without incident when WITH_PYMALLOC is #define'd. Note that this isn't unprecedented. Other "private API" functions we export include _PySequence_IterSearch, _PyEval_SliceIndex, _PyCodec_Lookup, _Py_ZeroStruct, _Py_TrueStruct, _PyLong_New and _PyModule_Clear. | ||||
* | A faster version of the find_prefix_at_end() function (that I found in the | Andrew M. Kuchling | 2002-03-20 | 1 | -9/+7 |
| | | | | | | last Medusa release) Should be safe as a bugfix candidate, though it's not fixing a bug. | ||||
* | [Bug #528914] PyTraceBack_Store/Fetch were deleted in 1997, but their | Andrew M. Kuchling | 2002-03-19 | 1 | -3/+1 |
| | | | | | | prototypes remain. Noted by Yakov Markovitch. Bugfix candidate. | ||||
* | Expand LINKCC in configure.in. Suggested in bug report #529713. | Martin v. Löwis | 2002-03-19 | 2 | -5/+5 |
| | |||||
* | Adjust some poor wording in the text that explains what events are used | Fred Drake | 2002-03-19 | 1 | -27/+29 |
| | | | | | for (reported by Keith Briggs). Wrap some very long lines. | ||||
* | Clarify that copy_reg.pickle() is not intended for use with "classic" classes. | Fred Drake | 2002-03-19 | 1 | -3/+5 |
| | | | | | | This was stated before, but a minor grammatical error made it difficult to be sure of the meaning. This closes SF bug #530143. | ||||
* | Record 2.2.1c1 release date. | Tim Peters | 2002-03-19 | 1 | -1/+1 |
| | |||||
* | [Bug #531616] Make HTTPS work again by adding a sendall method to the | Andrew M. Kuchling | 2002-03-18 | 1 | -0/+3 |
| | | | | | | | | | | FakeSocket class. Without it, the sendall() call got the method on the underlying socket object, and that messed up SSL. Does httplib use other methods of sockets that FakeSocket doesn't support? Someone should take a look... (I'll try to give it a once-over.) 2.2.1 bugfix candidate. | ||||
* | To make 'urllib.py -t' run again, change FTP URL to a file that actually | Andrew M. Kuchling | 2002-03-18 | 1 | -1/+1 |
| | | | | exists. | ||||
* | use -kb on idle/Icons/minusnode.gif ("cvs up" kept checking it out all | Fredrik Lundh | 2002-03-18 | 1 | -0/+0 |
| | | | | the time...) | ||||
* | Drop the PyCore_* memory API. | Neil Schemenauer | 2002-03-18 | 4 | -92/+71 |
| | |||||
* | Re-enable GC of generator objects. | Neil Schemenauer | 2002-03-18 | 1 | -6/+6 |
| | |||||
* | Re-enable GC of method objects. | Neil Schemenauer | 2002-03-18 | 1 | -7/+6 |
| | |||||
* | Re-enable GC of iter objects. | Neil Schemenauer | 2002-03-18 | 1 | -14/+12 |
| | |||||
* | (py-temp-directory): Add /var/tmp to the list of directories this | Barry Warsaw | 2002-03-18 | 1 | -3/+4 |
| | | | | | | searches. This is added after /tmp. Closes SF bug #505488, except that /var/tmp comes after /tmp instead of the patch's suggestion of putting it before /usr/tmp. | ||||
* | Remove extraneous #define as per effbot's instructions in: | Neal Norwitz | 2002-03-18 | 1 | -2/+0 |
| | | | | [ 530285 ] redefining SRE_CODE in Modules/sre.h | ||||
* | Simpilify PyCore_* macros by assuming the function prototypes for | Neil Schemenauer | 2002-03-18 | 3 | -154/+34 |
| | | | | malloc() and free() don't change. | ||||
* | Fix up unescaped tilde; reported by several people. | Fred Drake | 2002-03-18 | 1 | -1/+1 |
| | |||||
* | Remove extra verb; reported by Detlef Lannert. | Fred Drake | 2002-03-18 | 1 | -2/+1 |
| | |||||
* | Lurking bug found by patch for 531291: FSSpecs should be passed to | Jack Jansen | 2002-03-18 | 2 | -2/+2 |
| | | | | | | Py_BuildValue by address, not by value. 2.2.1 candidate. | ||||
* | Some of the newer routines return an OSErr, like most toolbox calls, in ↵ | Jack Jansen | 2002-03-18 | 2 | -95/+67 |
| | | | | | | stead of depending on ResError(). Second half of fix for #531291. 2.2.1 candidate. | ||||
* | Some structures should be passed to Py_BuildValue by reference, not by value, | Jack Jansen | 2002-03-18 | 2 | -2/+10 |
| | | | | | | notably FSSpec and FSRef objects. First half of fix for #531291. 2.2.1 candidate. | ||||
* | amk's fix attached to | Michael W. Hudson | 2002-03-18 | 3 | -1/+26 |
| | | | | [ 516299 ] urlparse can get fragments wrong | ||||
* | Patch #495598: add an -q (quiet) option to pycompile. | Martin v. Löwis | 2002-03-18 | 3 | -11/+31 |
| | |||||
* | Correctly set default entry in all cases. | Martin v. Löwis | 2002-03-18 | 1 | -6/+9 |
| | |||||
* | Patch #499513: use readline() instead of readlines(). Removed the | Martin v. Löwis | 2002-03-18 | 1 | -16/+6 |
| | | | | unnecessary redirection limit code which is already in FancyURLopener. | ||||
* | Patch #512466: Script to move faqwiz entries. | Martin v. Löwis | 2002-03-18 | 2 | -0/+50 |
| | |||||
* | 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 |
| |