]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/libs/python/test/tuple.py
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / python / test / tuple.py
index 1aec5fded4864458a3b7de120ce11c5e9c7b9b4a..e2cd5eb1795d3d81414554bd9dc4c77ec182bc7f 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
 """
 >>> from tuple_ext import *
 >>> def printer(*args):
@@ -22,6 +21,8 @@ from __future__ import print_function
 ('hello', 42)
 """
 
+from __future__ import print_function
+
 def run(args = None):
     import sys
     import doctest
@@ -29,7 +30,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