vote up 4 vote down star

How do you explicitly access name in Python's built in scope?

One situation where I ran in to this was a in module, say called foo, which happened to have an open function. In another module foo's open function would be accessible as foo.open which works well. In foo itself though, open blocks the built in open. How can you access the built in version of a name like open explicitly?

I am aware it is probably practically bad idea to block any built in name, but I am still curious to know if there is a way to explicitly access the built in scope.

flag
+1: It's a very bad idea to override builtin names. – S.Lott Jun 5 at 0:36

2 Answers

vote up 6 vote down check

Use __builtin__.

def open():
    pass

import __builtin__

print open
print __builtin__.open

... gives you ...

<function open at 0x011E8670>
<built-in function open>

link|flag
Bonus point if someone can tell me when this was first included in python. The docs are normally good at saying that, but it doesn't seem to be the case here: docs.python.org/library/__builtin__.html – amjoconn Jun 4 at 21:05
2  
A long, long time as you can see this thread dating from 1992: python.org/search/hypermail/… (it was called builtin instead of builtin back then). Would not worry about older versions not supporting it ;-) – ChristopheD Jun 4 at 22:05
vote up -1 vote down

It's something like

__builtins__.open()
link|flag
1  
builtins is an implementation detail of CPython. I wouldn't rely on it. – Chris B. Jun 4 at 21:01
True... I was originally going to suggest builtin but I'd forgotten that it was a module :-/ – David Jun 5 at 22:02

Your Answer

Get an OpenID
or

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