vote up 0 vote down star

Is it possible to make a user-defined Python function act like a statement? In other words, I'd like to be able to say:

myfunc

rather than:

myfunc()

and have it get called anyway -- the way that, say, print would.

I can already hear you all composing responses about how this is a horrible thing to do and I'm stupid for asking it and why do I want to do this and I really should do something else instead, but please take my word that it's something I need to do to debug a problem I'm having and it's not going to be checked in or used for, like, an air traffic control system.

flag

65% accept rate
I'm curious, what situation could possibly require you to do that? – David Jan 28 '09 at 21:46
Why don't you show us, what you have to debug, and we'll show you how to debug without creating statements. – hop Jan 28 '09 at 21:46
Python only has 20 or so statements (like print) are you trying to replace one of those 20 statements as part of debugging? If so, which one. What specific problem do you have? – S.Lott Jan 28 '09 at 22:02
I'm also very curious about this. I don't think statements like that are an abomination or anything; I just can't think of any situation where myfunc() wouldn't do exactly the same thing. – DNS Jan 28 '09 at 22:08
can you fix the question. All user-defined functions behave like built-in functions. You appear to want a function to behave like a statement. – S.Lott Jan 29 '09 at 1:39

6 Answers

vote up 8 vote down

No, it is not possible.

As you can see from the Language Reference, there is no room left for extensions of the list of simple statements in the specification.

Moreover, print as a statement no longer exists in Python 3.0 and is replaced by the print() builtin function.

link|flag
vote up 3 vote down

If what you're looking for is to add a new statement (like print) to Python's language, then this would not be easy. You'd probably have to modify lexer, parser and then recompile Python's C sources. A lot of work to do for a questionable convenience.

link|flag
vote up 2 vote down

Not if you want to pass in arguments. You could do something build an object that ABUSES the __str__ method, but it is highly not recommended. You can also use other operators like overload the << operator like cout does in C++.

link|flag
Sounds good. How would that work? – Mike Jan 28 '09 at 21:56
Wouldn't it work in the interpreter only? – DzinX Jan 28 '09 at 21:58
@Mike, look at creating an object and overriding the lshift method. This is the method that corrosponds to the << operator. It takes in one argument which is the element being "shifted" into it. @DzinX, no it would work anywhere. – Evan Fosmark Jan 28 '09 at 22:04
How about abusing the str method? Would that only work with "print myfunc" as opposed to just "myfunc" on its own? – Mike Jan 28 '09 at 22:17
wouldn't even work in the interactive interpreter – hop Jan 28 '09 at 23:12
show 1 more comment
vote up 2 vote down

I would not implement this, but if I was implementing this, I would give code with myfunc a special extension, write an import hook to parse the file, add the parenthesis to make it valid Python, and feed that into the interpreter.

link|flag
vote up 1 vote down

In Python 2.x print is not a function it is a statement just as if, while and def are statements.

link|flag
vote up 0 vote down

This probably isn't going to cover your problem, but I'll mention it anyway. If myfunc is part of a module, and you are using it like this:

from mymodule import myfunc
myfunc # I want this to turn into a function call

Then you could instead do this:

import mymodule
mymodule.myfunc # I want this to turn into a function call

You could then remove myfunc from mymodule and overload the module so it calls a particular function each time the myfunc member is requested.

link|flag

Your Answer

Get an OpenID
or
never shown

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