2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 17:52:17 +00:00
Files
python/example/tst_noncopyable.py
nobody cc9aafb6d6 This commit was manufactured by cvs2svn to create tag
'before_adding_complex'.

[SVN r9301]
2001-02-21 00:40:58 +00:00

9 lines
215 B
Python

import noncopyable_export
import noncopyable_import
s1 = noncopyable_export.store(1)
print s1.recall()
s2 = noncopyable_export.store(2)
print s2.recall()
s3 = noncopyable_import.add_stores(s1, s2)
print s3.recall()