Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As we know that, in python 2.x, integer would be got if we divide two integer values. However, if using the furture (it's might be a lib or something like that), just like from __future__ import division, we can get float value. E.g.:

>>> 3/2
1
>>> from __future__ import division
>>> 3/2
1.5
>>> 
>>> 
>>> 3//2
1
>>> 4/3
1.3333333333333333
>>> 

So, '//' instead of '/' should be used if getting integer after imported division, but I want to know how to using '/' to get integer again. That is mean, whether there is some way to un-import or remove the libs which was imported before.

share|improve this question
1  
Why would you want to do that? – Brendan Long Sep 19 '12 at 16:28

migrated from superuser.com Sep 19 '12 at 16:22

2 Answers

up vote 4 down vote accepted

__future__ imports are special, and cannot be undone. You can read up on their behavior here.

Here are a few relevant portions:

A future statement is recognized and treated specially at compile time: Changes to the semantics of core constructs are often implemented by generating different code. It may even be the case that a new feature introduces new incompatible syntax (such as a new reserved word), in which case the compiler may need to parse the module differently. Such decisions cannot be pushed off until runtime.
...
A future statement typed at an interactive interpreter prompt will take effect for the rest of the interpreter session.

Since __future__ statements are handled at compile time as opposed to runtime, there is no runtime method for reverting the changed behavior.

With normal modules you can remove or unimport the module by deleting whatever you imported from the namespace, and deleting the entry for that import in sys.modules (this second part may not be necessary depending on the use case, all it does is force the reloading of the module if it is imported again).

share|improve this answer
+1 to both this answer (which explains the problem) and Brendan Long's (which explains how the OP can actually do what he wants to do). – abarnert Sep 19 '12 at 18:36

import statements are local to the file you import in, so for example, if you have this file as example.py:

from __future__ import division
print(1/2)

Then you load it in another file:

import example # prints 0.5 because `division` is imported in example.py
print(1/2) # prints 0 because `division` is not imported in this file

So if you want an import that's only used in some of your code, put that code in a separate file.

In the case you gave, I'm not sure it's helpful though. Why not just use // when you need integer division?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.