vote up 0 vote down star

As this says:

http://mail.python.org/pipermail/python-list/2003-May/206149.html

Function overloading is absent in Python.

As far as I feel this a big handicap since its also an OO language. Initially I found that unable to differentiate between the argument types was difficult but the dynamic nature of Python made it easy (e.g. list, tuples, strings are much similar).

However counting the number of arguments passed and then doing the job is like an overkill.

flag

So? What do you think you need overloading for? – kquinn Apr 9 at 7:59
Voting to close as not a real question. That's not to say it's not a potentially valid point, but it's not a question. – Jon Skeet Apr 9 at 8:01
Well, then use a language that provides overloading... – Ionut G. Stan Apr 9 at 9:39
Also voting to close. This is either an implied question or a rant, either of which is hard to answer. – Jarret Hardie Apr 9 at 12:05
It could have been a question if I just added -- "any Pythonic way to do this?". However I feel this is implied in my post. – Xolve Apr 9 at 13:59
show 1 more comment

closed as not a real question by Jon Skeet, Konrad Rudolph, SilentGhost, Jarret Hardie, dF Apr 9 at 13:32

5 Answers

vote up 2 vote down

Oftentimes you see the suggestion use use keyword arguments, with default values, instead. Look into that.

link|flag
vote up 1 vote down

you don't need function overloading, as you have the *args and **kwargs arguments.

The fact is that function overloading is based on the idea that passing different types you will execute different code. If you have a dynamically typed language like python, you should not distinguish by type, but you should deal with interfaces and their compliance with the code you write.

For example, if you have code that can handle either an integer, or a list of integers, you can try iterating on it and if you are not able to, then you assume it's an integer and go forward. Of course it could be a float, but as far as the behavior is concerned, if a float and an int appear to be the same, then they can be interchanged.

link|flag
vote up 0 vote down

You can pass a mutable container datatype into a function, it can contain anything you want.

If you need a different functionality, name the functions differently, or if U need a same interface, just write a interface function (or method) that calls the functions appropriately based on the data received.

It took a while to me to get adjusted to this coming from Java, But it really isnt a "big handicap"

link|flag
vote up 5 vote down

Now, unless you're trying to write C++ code using Python syntax, what would you need overloading for?

I think it's exactly opposite, overloading is hack-work for handicapped languages, which need statically typed function arguments and exact number of them. In Python you have keyword argument, you have *args and **kwargs.

See for example: http://stackoverflow.com/questions/682504/what-is-a-clean-pythonic-way-to-have-multiple-constructors-in-python

link|flag
vote up 2 vote down

As unwind noted, keyword arguments with default values can go a long way.

I'll also state that in my opinion, it goes against the spirit of Python to worry a lot about what types are passed into methods. In Python, I think it's more accepted to use duck typing -- asking what an object can do, rather than what it is.

Thus, if your method may accept a string or a tuple, you might do something like this:

def print_names(names):
    """Takes a space-delimited string or an iterable"""
    try:
        for name in names.split(): # string case
            print name
    except AttributeError:
        for name in names:
            print name

Then you could do either of these:

print_names("Ryan Billy")
print_names(("Ryan", "Billy"))

Although an API like that sometimes indicates a design problem.

link|flag

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