Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Lots of minor tweaks for the pep252 checkins, mainly because Qd | Jack Jansen | 2002-11-30 | 25 | -61/+60 |
| | | | | attributes are no longer supported. | ||||
* | Build _AE too. | Jack Jansen | 2002-11-29 | 1 | -0/+4 |
| | |||||
* | Converted the Carbon modules to use PEP252-style objects, with | Jack Jansen | 2002-11-29 | 48 | -2507/+2447 |
| | | | | | | | | | | | | | | | | descriptors in stead of manual getattr hooks to get at attributes of the objects. For Qd I have in stead gotten rid of most of the attribute access in favor of the carbon-style accessor methods (with the exception of visRgn, to be done later), and of the Carbon.Qd.qd global object, for which accessor functions are also available. For List I have fixed the fact that various methods were incorrectly generated as functions. CF is untouched: PEP252 doesn't allow "poor-mans-inheritance" with basechain, so it will have to wait for PEP253 support. | ||||
* | Correct an error introduced at Rev 1.30. The keyword arg is necessary | Kurt B. Kaiser | 2002-11-29 | 1 | -6/+8 |
| | | | | to freeze the value of orig_checkcache. Otherwise infinite recursion. | ||||
* | Forgot to do os.path.basename() on mainprogram: a nonworking app was built ↵ | Just van Rossum | 2002-11-29 | 1 | -7/+6 |
| | | | | if the mainprogram wan't in the current directory. Fixed. | ||||
* | Slightly improved version of patch #642578: "Expose PyImport_FrozenModules | Just van Rossum | 2002-11-29 | 3 | -0/+167 |
| | | | | | in imp". This adds two functions to the imp module: get_frozenmodules() and set_frozenmodules(). | ||||
* | added Thomas H's LOADER code for importing extension (sub)modules; little tweaks | Just van Rossum | 2002-11-29 | 1 | -21/+27 |
| | |||||
* | Fix mode on scripts to have the read bit set (noted by Nicholas Riley) | Andrew M. Kuchling | 2002-11-29 | 1 | -1/+1 |
| | |||||
* | Fix value of 'propagate' (noted by Chris Reedy) | Andrew M. Kuchling | 2002-11-29 | 1 | -8/+10 |
| | | | | Rewrite paragraph | ||||
* | Fix typo. | Walter Dörwald | 2002-11-29 | 1 | -1/+1 |
| | |||||
* | Fixed two silly bugs in the PEP252 support code, added an assert | Jack Jansen | 2002-11-28 | 1 | -3/+10 |
| | | | | that basechain isn't set, and made the output a bit prettier. | ||||
* | fixed typo and wrapping | Just van Rossum | 2002-11-28 | 1 | -1/+2 |
| | |||||
* | - Rewrote bootstapping code in sh so we're really independent of an | Just van Rossum | 2002-11-28 | 1 | -40/+54 |
| | | | | | | | | | | installed Python. So we don't use os.execve any longer, which means we need an actual executable in <myapp>.app/Contents/MacOS. For applets we make a symlink to the Python executable used to build the applet, for standalone apps we simply copy it. - Added support for the new any_missing_maybe() feature of modulefinder.py, which is pending as patch #643711. Its use is optional so it still works with the existing version of modulefinder.py | ||||
* | Allow the device name to be passed to linuxaudiodev.open(), for | Greg Ward | 2002-11-27 | 1 | -7/+19 |
| | | | | | | | | | | | | consistency with the built-in open() (and every other sane open() function, for that matter). The two valid ways to call this open() are now open(mode) and open(device, mode). For backwards compatibility, retain the old open(mode) calling syntax -- this makes the error message when you call open(device) a bit confusing, but oh well. This is the first half of SF patch #644977. | ||||
* | Add missing decref | Neal Norwitz | 2002-11-27 | 1 | -0/+1 |
| | |||||
* | Mention dict.fromkeys() | Andrew M. Kuchling | 2002-11-27 | 1 | -18/+29 |
| | | | | Various edits | ||||
* | Update e-mail address | Andrew M. Kuchling | 2002-11-27 | 3 | -3/+3 |
| | |||||
* | Nudge getting __module__ and __name__ for new-style classes so that | Michael W. Hudson | 2002-11-27 | 2 | -18/+33 |
| | | | | | | | the results of *setting* __name__ are not so surprising. If people can suggest more tests, that'd be grand, or is what's there sufficient? | ||||
* | SF #641170, reST version of Lib/test/README | Neal Norwitz | 2002-11-27 | 1 | -89/+99 |
| | | | | Convert test/README to reST | ||||
* | I don't know why staring at the email to python-checkins made me | Michael W. Hudson | 2002-11-27 | 2 | -9/+16 |
| | | | | | | | see problems with my code that I didn't see before the checkin, but: When a subtype .mro() fails, we need to reset the type whose __bases__ are being changed, too. Fix + test. | ||||
* | Readjustments to the way we cope with exceptions from subclasses' | Michael W. Hudson | 2002-11-27 | 2 | -12/+111 |
| | | | | | | mro() methods. Now any exception aborts the whole __bases__ change. And more tests. | ||||
* | [Part of patch #641685] Add .dylib as an extension for shared libraries | Andrew M. Kuchling | 2002-11-27 | 1 | -1/+1 |
| | |||||
* | [Patch #641685] setup.py contained code for finding libraries, instead | Andrew M. Kuchling | 2002-11-27 | 1 | -8/+24 |
| | | | | | | | | | | of using the CCompiler.find_library_file() provided by the Distutils. This patch fixes it to use the Distutils method at the cost of some additional glue. (The duplication resulted in the SSL module not being automatically built on Macs; the Distutils knew that shared libraries on OS X have a .dylib extension, but the setup.py code didn't.) | ||||
* | Bug #643631: MacOS 9 details missing from inst.tex | Andrew M. Kuchling | 2002-11-27 | 1 | -18/+7 |
| | | | | Fill in the missing details. (From Jack Jansen) | ||||
* | Rephrase dict.fromkeys() news. | Guido van Rossum | 2002-11-27 | 1 | -4/+5 |
| | |||||
* | I had the inheritance cycle stuff backwards. Oops! | Michael W. Hudson | 2002-11-27 | 2 | -4/+14 |
| | |||||
* | Patch #639112: fixes for None locale and tz. | Martin v. Löwis | 2002-11-27 | 2 | -61/+154 |
| | |||||
* | Bring UserDict in-sync with changes to dict. | Raymond Hettinger | 2002-11-27 | 2 | -6/+25 |
| | | | | | | Constructor accepts optional keyword arguments after a optional items list. Add fromkeys() as an alternate constructor from an iterable over keys. Expand related unittests. | ||||
* | SF Patch 643443. Added dict.fromkeys(iterable, value=None), a class | Raymond Hettinger | 2002-11-27 | 4 | -1/+97 |
| | | | | method for constructing new dictionaries from sequences of keys. | ||||
* | Clarify the interpretation of the __getstate__() return value for | Fred Drake | 2002-11-27 | 1 | -3/+9 |
| | | | | | new-style classes. Closes SF bug #637941. | ||||
* | The MRO conflict error message depends on dictionary hash order. | Guido van Rossum | 2002-11-27 | 1 | -4/+4 |
| | | | | Avoid depending on this in the test. | ||||
* | Add missing dependency information for the "What's New" document. | Fred Drake | 2002-11-26 | 1 | -2/+2 |
| | |||||
* | Avoid including tclInt.h. | Martin v. Löwis | 2002-11-26 | 1 | -10/+26 |
| | |||||
* | Noted the support for resource exclusion for regrtest. Some people | Fred Drake | 2002-11-26 | 1 | -0/+7 |
| | | | | use regrtest, so it might be interesting. | ||||
* | Add a way to say "use any resource except A". For example, to run | Fred Drake | 2002-11-26 | 2 | -4/+17 |
| | | | | | allow the use of any resource except bsddb, give the option "-uall,-bsddb". | ||||
* | Rename want_objects to wantobjects throughout, for consistency. | Martin v. Löwis | 2002-11-26 | 4 | -14/+14 |
| | |||||
* | Use "is" to test type objects, not "==". | Fred Drake | 2002-11-26 | 1 | -1/+1 |
| | |||||
* | * Doc/ref/ref5.tex | Gustavo Niemeyer | 2002-11-26 | 1 | -1/+1 |
| | | | | Fixed minor bug preventing documentation compilation. | ||||
* | Initialize a variable. Hope this makes things work for Guido. | Michael W. Hudson | 2002-11-26 | 1 | -1/+1 |
| | | | | It's odd that gcc on my ibook didn't complain about this. | ||||
* | Fix for bug #410541: bdist builds bogus .zips | Andrew M. Kuchling | 2002-11-26 | 1 | -6/+25 |
| | | | | | | This adds a --relative option to the bdist_dumb command that defaults to false; if true, the .tar.gz or .zip will be assembled using relative paths. | ||||
* | Part of the fix for bug #410541: add ensure_relative() function | Andrew M. Kuchling | 2002-11-26 | 1 | -1/+15 |
| | |||||
* | This is not part of my patch | Michael W. Hudson | 2002-11-26 | 2 | -0/+9 |
| | | | | | | | | [ 635933 ] make some type attrs writable but should have been! News about the above. | ||||
* | This is my patch: | Michael W. Hudson | 2002-11-26 | 2 | -34/+366 |
| | | | | | | | | | | | | [ 635933 ] make some type attrs writable Plus a couple of extra tests beyond what's up there. It hasn't been as carefully reviewed as it perhaps should, so all readers are encouraged, nay exhorted, to give this a close reading. There are still a couple of oddities related to assigning to __name__, but I intend to solicit python-dev's opinions on these. | ||||
* | Fix typo | Andrew M. Kuchling | 2002-11-26 | 1 | -1/+1 |
| | |||||
* | refactor universal line endings detection | Just van Rossum | 2002-11-26 | 1 | -8/+8 |
| | |||||
* | Report Tkinter changes. | Martin v. Löwis | 2002-11-26 | 1 | -0/+24 |
| | |||||
* | Patch #518625: Return objects in Tkinter. | Martin v. Löwis | 2002-11-26 | 3 | -6/+335 |
| | |||||
* | Patch #632973: Implement _getdefaultlocale for OS X. | Martin v. Löwis | 2002-11-26 | 2 | -8/+19 |
| | |||||
* | Polish some bits to silence pychecker. | Thomas Heller | 2002-11-26 | 1 | -1/+1 |
| | |||||
* | Don't look for modules in the registry any longer. | Thomas Heller | 2002-11-26 | 1 | -38/+0 |
| | | | | | | | | | | Mark writes in private email: "Modules listed in the registry was a dumb idea. This whole scheme can die. AFAIK, no one in the world uses it (including win32all since the last build)." (See also SF #643711) |