Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Many of the new calls are Carbon-only. Flagged them as such. | Jack Jansen | 2001-12-14 | 2 | -0/+658 |
| | |||||
* | Added test_socketserver and test_unicode_file to tests expected to be | Jack Jansen | 2001-12-14 | 1 | -0/+2 |
| | | | | | skipped on Mac OS X. Not sure yet about test_locale.py: this may be due to my copy of Mac OS X (although it talks english fine enough). | ||||
* | Add a missing "cycle". | Fred Drake | 2001-12-14 | 1 | -1/+1 |
| | |||||
* | Merge last minute 2.2c1 changes from branch to trunk. | Barry Warsaw | 2001-12-14 | 2 | -10/+52 |
| | |||||
* | send(), ehlo(): Integrate patch #487310 by Fazal Majid. Consistently | Barry Warsaw | 2001-12-14 | 1 | -0/+2 |
| | | | | | | | call self.close() just before raising SMTPServerDisconnected. This allows you to, e.g. reconnect after a server timeout. Merged from the 2.2c1 branch. | ||||
* | As usual, bump the version number. | Barry Warsaw | 2001-12-14 | 1 | -3/+3 |
| | |||||
* | Note the tighter complex() parameter checking. | Fred Drake | 2001-12-14 | 1 | -0/+4 |
| | |||||
* | Work around the problem of spaces after a "}" being dropped by LaTeX2HTML if | Fred Drake | 2001-12-14 | 1 | -5/+5 |
| | | | | | they were represented by newlines in the document source. Partially fixes SF bug #493243. | ||||
* | The valign attribute to control the vertical alignment of a table cell should | Fred Drake | 2001-12-14 | 1 | -3/+3 |
| | | | | | be on the <tr> element, not the <table> element. Partially fixes SF bug #493243. | ||||
* | Bump version numbers for the trunk. | Fred Drake | 2001-12-14 | 2 | -2/+2 |
| | |||||
* | Reflect change of Digital Creations to Zope Corporation. | Fred Drake | 2001-12-14 | 1 | -6/+6 |
| | |||||
* | Partial fix for problem in SF buf #487458 | Jeremy Hylton | 2001-12-14 | 1 | -1/+7 |
| | | | | | | | | | | | | | | | | | | Rev 1.20 introduced a call to getpeername() in the dispatcher constructor. This only works for a connected socket. Apparently earlier versions of the code worked with un-connected sockets, e.g. a listening socket. It's not clear that the code is supposed to accept these sockets, because it sets self.connected = 1 when passed a socket. But it's also not clear that it should be a fatal error to pass a listening socket. The solution, for now, is to put a try/except around the getpeername() call and continue if it fails. The self.addr attribute is used primarily (only?) to produce a nice repr for the object, so it hardly matters. If there is a real error on a connected socket, it's likely that subsequent calls will fail too. | ||||
* | Add default values for options in the class init routine, not in the ↵ | Jack Jansen | 2001-12-14 | 2 | -14/+17 |
| | | | | convenience wrapper function: distutils uses the class directly. Fixes bug #492665. | ||||
* | (Merge into trunk.) | Guido van Rossum | 2001-12-14 | 2 | -1/+13 |
| | | | | | | | | | | | | | | | | | Fix for SF bug #492345. (I could've sworn I checked this in, but apparently I didn't!) This code: class Classic: pass class New(Classic): __metaclass__ = type attempts to create a new-style class with only classic bases -- but it doesn't work right. Attempts to fix it so it works caused problems elsewhere, so I'm now raising a TypeError in this case. | ||||
* | - "manage" controls created by CreateXxxXxxControl() functions. | Just van Rossum | 2001-12-13 | 3 | -48/+67 |
| | | | | - FindControlUnderMouse() returns an existing control, not a new one. | ||||
* | Undo inadvertent change to test_scope in previous checkin | Jeremy Hylton | 2001-12-13 | 1 | -2/+1 |
| | |||||
* | Add a comment explaining what these tests are for, and where to look for | Fred Drake | 2001-12-13 | 1 | -0/+3 |
| | | | | tests of complex(). | ||||
* | For the exec-free var bug. | Jeremy Hylton | 2001-12-13 | 1 | -0/+1 |
| | |||||
* | Ensure that complex() only accepts a string argument as the first arg, | Fred Drake | 2001-12-13 | 3 | -4/+26 |
| | | | | | and only if there is no second arg. This closes SF patch #479551. | ||||
* | Fix for SF bug [ #492403 ] exec() segfaults on closure's func_code | Jeremy Hylton | 2001-12-13 | 3 | -5/+10 |
| | | | | | | | | Based on the patch from Danny Yoo. The fix is in exec_statement() in ceval.c. There are also changes to introduce use of PyCode_GetNumFree() in several places. | ||||
* | Update output generated by test_scope | Jeremy Hylton | 2001-12-13 | 1 | -1/+1 |
| | |||||
* | Add helper macro to get the number of free variables for a PyCodeObject. | Jeremy Hylton | 2001-12-13 | 1 | -0/+1 |
| | |||||
* | Add test for SF bug [ #492403 ] exec() segfaults on closure's func_code | Jeremy Hylton | 2001-12-13 | 1 | -2/+10 |
| | |||||
* | Update Windows buildno for 2.2c1. | Tim Peters | 2001-12-13 | 3 | -4/+6 |
| | | | | Update 2.2c1 release data in NEWS. | ||||
* | Replace the "Cookbook approach" with the approach documented in | Fred Drake | 2001-12-13 | 1 | -15/+166 |
| | | | | | PC/example_nt/readme.txt; this one does not rely on any external scripts. This "fixes" SF bug #221671 and most of SF bug #225003. | ||||
* | OSX workaround: don't crash if the extentions folder can't be found. | Just van Rossum | 2001-12-13 | 1 | -2/+6 |
| | | | | Not sure how to properly solve this. | ||||
* | build CoreGraphics under darwin | Just van Rossum | 2001-12-13 | 1 | -0/+3 |
| | |||||
* | include the proper header for Mach-O | Just van Rossum | 2001-12-13 | 2 | -2/+2 |
| | |||||
* | added CoreGraphics to build list | Just van Rossum | 2001-12-13 | 1 | -0/+1 |
| | |||||
* | added non-support for CoreGraphics... | Just van Rossum | 2001-12-13 | 1 | -0/+5 |
| | |||||
* | project file for CoreGraphics | Just van Rossum | 2001-12-13 | 2 | -0/+1 |
| | |||||
* | second CoreGraphics batch | Just van Rossum | 2001-12-13 | 8 | -0/+3414 |
| | |||||
* | first checkin for CoreGraphics | Just van Rossum | 2001-12-13 | 2 | -0/+25 |
| | |||||
* | fixed typo in my email address | Just van Rossum | 2001-12-13 | 1 | -1/+1 |
| | |||||
* | Don't barf when an AppleEvent was not handled. It's ok to ignore. | Just van Rossum | 2001-12-13 | 1 | -2/+3 |
| | |||||
* | re-checkin as AppleSingle | Just van Rossum | 2001-12-13 | 2 | -0/+0 |
| | |||||
* | Make tix_configure() work the same way configure() works for the basic | Fred Drake | 2001-12-13 | 1 | -86/+92 |
| | | | | | | | Tkinter classes. Adjust a lot of docstrings. Convert a few type checks to use isinstance() instead of type(). This is part of SF patch #485959. | ||||
* | Minor adjustments. | Fred Drake | 2001-12-13 | 1 | -7/+10 |
| | |||||
* | Build _CarbonEvt module on Mac OS X. Still gives a couple of warnings | Jack Jansen | 2001-12-12 | 1 | -0/+2 |
| | | | | but compiles OK. | ||||
* | Shut up gcc warning. | Jack Jansen | 2001-12-12 | 2 | -4/+4 |
| | |||||
* | Updated for 2.2 release. | Jack Jansen | 2001-12-12 | 1 | -0/+0 |
| | |||||
* | added CarbonEvents | Just van Rossum | 2001-12-12 | 2 | -0/+2 |
| | |||||
* | Updated for Universal Headers 3.4. | Just van Rossum | 2001-12-12 | 4 | -57/+2655 |
| | |||||
* | Support files for CarbonEvents | Just van Rossum | 2001-12-12 | 2 | -0/+353 |
| | |||||
* | Added proper error checking in event callback handler | Just van Rossum | 2001-12-12 | 2 | -24/+50 |
| | |||||
* | Ready for 2.2 distribution. | Jack Jansen | 2001-12-12 | 3 | -10/+18 |
| | |||||
* | OSX tweak: recognize both EXTERN_API_C and EXTERN_API declarations. | Just van Rossum | 2001-12-12 | 1 | -2/+2 |
| | | | | Jack: I hope I didn't break anything for you! | ||||
* | Exposed quite a few more calls. | Just van Rossum | 2001-12-12 | 3 | -28/+191 |
| | |||||
* | Fix for SF #491953 (Andrew Dalke): ScrolledText.py has TabError | Guido van Rossum | 2001-12-12 | 1 | -3/+3 |
| | | | | Untabified. | ||||
* | Fix for | Michael W. Hudson | 2001-12-12 | 1 | -2/+45 |
| | | | | [ #429329 ] actual-parameters *arg, **kws not doc'd |