mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Give default _elemdict and _propdict attributes to OSA classes, so
we don't get infinite recursion for suites that don't have an application class. Also got rid of some tabs.
This commit is contained in:
parent
2cf9b956f7
commit
39c5d666c9
1 changed files with 6 additions and 4 deletions
|
@ -144,6 +144,8 @@ class TalkTo:
|
||||||
"""An AE connection to an application"""
|
"""An AE connection to an application"""
|
||||||
_signature = None # Can be overridden by subclasses
|
_signature = None # Can be overridden by subclasses
|
||||||
_moduleName = None # Can be overridden by subclasses
|
_moduleName = None # Can be overridden by subclasses
|
||||||
|
_elemdict = {} # Can be overridden by subclasses
|
||||||
|
_propdict = {} # Can be overridden by subclasses
|
||||||
|
|
||||||
__eventloop_initialized = 0
|
__eventloop_initialized = 0
|
||||||
def __ensure_WMAvailable(klass):
|
def __ensure_WMAvailable(klass):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue