[Pyobjc-dev] Namespaces, intended behavior?
Brought to you by:
ronaldoussoren
|
From: Just v. R. <jus...@gm...> - 2018-04-05 15:39:31
|
Hi,
I am wondering, is the following intended behavior?
-------------
import Foundation
class TestMyCustomObject(Foundation.NSObject):
pass
import AppKit
# it's suddenly available via AppKit:
print(AppKit.TestMyCustomObject)
# even via import *:
from AppKit import *
print(TestMyCustomObject)
-------------
Thanks,
Just
|