2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-22 05:22:45 +00:00
Files
python/example/tst_noncopyable.py
Ralf W. Grosse-Kunstleve dd0e42cf72 temp files before branching
[SVN r9457]
2001-03-06 02:44:32 +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()