mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-05 03:20:08 +01:00
14 lines
300 B
Python
14 lines
300 B
Python
"""
|
|
|
|
:copyright: Copyright since 2006 by Oliver Schoenborn, all rights reserved.
|
|
:license: BSD, see LICENSE_BSD_Simple.txt for details.
|
|
|
|
"""
|
|
|
|
def getRootTopicSpec():
|
|
"""If using kwargs protocol, then root topic takes no args."""
|
|
argsDocs = {}
|
|
reqdArgs = ()
|
|
return argsDocs, reqdArgs
|
|
|