]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/python/test/pickle3.py
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / python / test / pickle3.py
index 932e30f3cd7264883c87b673b5a3cdb0260b3948..391e3d00f1b706e35b4fe2acd2a5928b513a63ec 100644 (file)
@@ -1,7 +1,6 @@
 # Copyright David Abrahams 2004. Distributed under the Boost
 # Software License, Version 1.0. (See accompanying
 # file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
-from __future__ import print_function
 r'''>>> import pickle3_ext
     >>> import pickle
     >>> pickle3_ext.world.__module__
@@ -30,6 +29,8 @@ r'''>>> import pickle3_ext
     Hello from California! 0 84 yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy 126.0
 '''
 
+from __future__ import print_function
+
 def run(args = None):
     import sys
     import doctest
@@ -37,7 +38,7 @@ def run(args = None):
     if args is not None:
         sys.argv = args
     return doctest.testmod(sys.modules.get(__name__))
-    
+
 if __name__ == '__main__':
     print("running...")
     import sys