| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
The fact that this was failing and went unnoticed so long seems like a good argument for being able to enable and disble py3kwarnings through Python.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
we don't get infinite recursion for suites that don't have an application
class.
Also got rid of some tabs.
|
|
|
|
|
|
|
|
|
|
| |
the toplevel package. This already worked for elements, but now for
properties too. Fixes #753925.
- Even better, the toplevel class (such as Finder.Finder) now inherits
the element and property dictionaries of its application class and has
the necessary glue to allow you to say
f = Finder.Finder()
f.get(f.name)
|
| |
|
|
|
|
|
|
| |
the Standard_Suite, but various other suites do expect it (the Finder
implements get() without declaring it itself). It is probably another
case of OSA magic. Adding them to the global base class.
|
|
|
|
|
| |
and initialize the event loop (if not done previously) to work around
a bug (IMHO) in MacOSX 10.2.
|
|
|
|
|
| |
has actually entered its event loop. As a stopgap, allow for a 10 second
grace period.
|
|
|
|
|
|
|
|
|
| |
could be responsible for various unexplained problems with Python/OSA
interaction over the years):
- Enum values were passed as their string counterparts. Most applications
don't seem to mind this, but some do (InDesign).
- Attributes have never worked (!), as they were incorrectly passed
as parameters. Apparently nobody uses them much:-)
|
| |
|
|
in MacPython-OS9 and MacPython-OSX (or the equivalent unix Python on
Mac OS X). The only items remaining in Mac/Lib are modules that are
meaningful only for MacPython-OS9 (CFM stuff, MacPython preferences
in resources, etc).
|