mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-07 22:44:25 +08:00
* Issue #1071: add yapf configuration file * yapf formatting of Code directory * yapf formatting of Contrib directory * yapf formatting of Data directory * yapf formatting of Docs directory * yapf formatting of External directory * yapf formatting of Projects directory * yapf formatting of Regress directory * yapf formatting of Scripts directory * yapf formatting of Web directory * yapf formatting of rdkit directory
15 lines
242 B
Python
Executable File
15 lines
242 B
Python
Executable File
from __future__ import print_function
|
|
import moda
|
|
import modb
|
|
|
|
ca = moda.ClassA()
|
|
print('ca:', ca.Get4())
|
|
|
|
cb = modb.ClassB()
|
|
print('cb:', cb.Get3())
|
|
|
|
newca = cb.ReturnOther()
|
|
print('new:', newca.Get4())
|
|
|
|
print('arg:', cb.AcceptOther(newca))
|