Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

list an example for calling static methods from WITHIN classes #54647

Closed
ifreecarve mannequin opened this issue Nov 16, 2010 · 18 comments
Closed

list an example for calling static methods from WITHIN classes #54647

ifreecarve mannequin opened this issue Nov 16, 2010 · 18 comments
Labels
docs Documentation in the Doc dir type-feature A feature request or enhancement

Comments

@ifreecarve
Copy link
Mannequin

ifreecarve mannequin commented Nov 16, 2010

BPO 10438
Nosy @birkenfeld, @rhettinger, @merwok, @bitdancer
Files
  • static_method_call_examples_10438.patch
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields:

    assignee = None
    closed_at = <Date 2017-07-12.17:03:29.686>
    created_at = <Date 2010-11-16.20:23:16.811>
    labels = ['type-feature', 'invalid', 'docs']
    title = 'list an example for calling static methods from WITHIN classes'
    updated_at = <Date 2017-07-12.17:03:29.684>
    user = 'https://bugs.python.org/ifreecarve'

    bugs.python.org fields:

    activity = <Date 2017-07-12.17:03:29.684>
    actor = 'r.david.murray'
    assignee = 'docs@python'
    closed = True
    closed_date = <Date 2017-07-12.17:03:29.686>
    closer = 'r.david.murray'
    components = ['Documentation']
    creation = <Date 2010-11-16.20:23:16.811>
    creator = 'ifreecarve'
    dependencies = []
    files = ['29854']
    hgrepos = []
    issue_num = 10438
    keywords = ['patch']
    message_count = 18.0
    messages = ['121314', '121315', '121316', '121317', '121319', '121320', '121322', '121324', '186935', '186946', '297978', '297991', '298168', '298172', '298175', '298195', '298228', '298235']
    nosy_count = 7.0
    nosy_names = ['georg.brandl', 'rhettinger', 'eric.araujo', 'r.david.murray', 'docs@python', 'ifreecarve', 'sbt']
    pr_nums = []
    priority = 'normal'
    resolution = 'not a bug'
    stage = 'resolved'
    status = 'closed'
    superseder = None
    type = 'enhancement'
    url = 'https://bugs.python.org/issue10438'
    versions = []

    @ifreecarve
    Copy link
    Mannequin Author

    ifreecarve mannequin commented Nov 16, 2010

    Concerning this section of the docs:
    http://docs.python.org/library/functions.html#staticmethod

    There is no example for calling a static method from another static method within the same class.

    As I discovered later, it's simple: C.f() -- from inside the class or outside it.

    A total newbie will accept this and move on... but in other programming languages, it's frowned upon to the class name from within the class. For example, in PHP you use the "self::" prefix and Java you don't need a prefix at all.

    So, even though I had it right the first time, it didn't SEEM right... so I went on a wild goose chase, for nothing. Googling "java call static method" will get you java documentation that lists both cases, as does "c++ call static method" and "php call static method".

    I feel that by adding "Note: you must also use the C.f() syntax when calling from within the class", the documentation will be more complete.

    @ifreecarve ifreecarve mannequin assigned docspython Nov 16, 2010
    @ifreecarve ifreecarve mannequin added docs Documentation in the Doc dir type-feature A feature request or enhancement labels Nov 16, 2010
    @bitdancer
    Copy link
    Member

    IMO this follows logically from Python's self-consistent rules. I'm not convinced that the amount of extra verbiage required to detail this particular case would make the docs clearer, but you are welcome to suggest a wording for us to consider.

    @bitdancer
    Copy link
    Member

    Woops, I see you did suggest a wording. However, what you wrote is imprecise and confused me when I first read it (I thought you meant that self.f() didn't work!).

    @birkenfeld
    Copy link
    Member

    I tend to agree with David. Especially since calling base class methods also uses the explicit class name.

    @birkenfeld
    Copy link
    Member

    However, what you wrote is imprecise and confused me when I first read
    it (I thought you meant that self.f() didn't work!).

    Well, it doesn't work in the specific case he mentioned of calling from another static method :)

    @bitdancer
    Copy link
    Member

    Only because you don't *have* self. Which is why I said "imprecise" and not "incorrect" :)

    @ifreecarve
    Copy link
    Mannequin Author

    ifreecarve mannequin commented Nov 16, 2010

    Am I to understand that self.f() is a valid way to call a static method? Can you see how that would run counter to intuition for someone who is familiar with other languages?

    Given that, I would make the following (more precise) change:

    < It can be called either on the class (such as C.f()) or on an instance (such as C().f()).
    ---

    It can be called either on the class (such as C.f()) or on an instance (such as C().f() or self.f()).

    @ifreecarve
    Copy link
    Mannequin Author

    ifreecarve mannequin commented Nov 16, 2010

    Disregard my previous comment; calling self.f() does not work from a static method.

    I stand by my previous suggestion, but I'll clarify it like this:

    "Note: you must also use the C.f() syntax when calling from a static method within the C class"

    @bitdancer
    Copy link
    Member

    After a discussion (at the Boston Python sprint, unfortunately I forget with who) of how difficult this could be to explain succinctly without confusing either java/C++ programmers on the one hand or Python programmers on the other hand, this, the wording in the attached patch occurred to me. I'm not certain that adding the extra words is worth it, but if so this might do.

    @sbt
    Copy link
    Mannequin

    sbt mannequin commented Apr 14, 2013

    Note that in Python 3 you can also do __class__.f() in a staticmethod. Not sure if that is encouraged though.

    @rhettinger
    Copy link
    Contributor

    I also don't think this is worth it. The extra wording will likely cause more confusion that it clears up.

    Also, calling a staticmethod from within a class isn't a common thing to do. The principal use case for Python's static methods is to attach a function to a class for the sole purpose of making it findable by someone using that class.

    @ifreecarve
    Copy link
    Mannequin Author

    ifreecarve mannequin commented Jul 9, 2017

    I agree that the use case is probably rare.

    I agree that to someone intimately familiar with the "self-consistent rules" of Python, the correctness of the C.f() approach is probably obvious.

    However, your documentation says:

    Static methods in Python are similar to those found in Java or C++.
    

    I feel that it's a mistake to purposefully avoid saying where that similarity ends. In those languages (and in many others), fully qualified function calls from within the same class are redundant and border on "code smell". We agree that this aspect of Python is not mentioned in the documentation, and we disagree on whether it should be. For myself, even in the 7 years and thousands of lines of Python since I opened this issue, I still don't find it intuitive or obvious that a method would need to know the name of the class that contains it. That doesn't make the language "wrong" in any way; it makes the documentation incomplete for not addressing it.

    The __class__.f() usage in Python 3 seems excellent. If that's the preferred way to do it, then that might be a way to approach the documentation. "To call one static method from another within the same class, as of Python 3 you may use __class__.f() instead of C.f(). For Python 2.x, you must still use the name of the class itself, C.f(), as if you were calling from outside the class." (My wording is still less than ideal, but you get the idea.)

    @bitdancer
    Copy link
    Member

    Given a choice between catering for Python programmers and catering for Java/C++ programmers, the Python docs obviously ought to chose to cater to Python programmers. To a python programmer, calling C.f() is intuitive.

    I would myself definitely *not* encourage the __class__.f() idiom.

    Maybe we should just drop the reference to Java and C++ static methods.

    @ifreecarve
    Copy link
    Mannequin Author

    ifreecarve mannequin commented Jul 11, 2017

    I would hope that the docs would cater to people who aren't sure how the language works (and who want to confirm that they are using proper patterns). If people already know how the language works, they won't need the docs.

    Whether or not you refer to Java and C++, you should state the best practices for both internal and external calling of static methods in Python.

    @bitdancer
    Copy link
    Member

    I'm not sure there's a "best practice" choice between the two calling forms that are documented. Although obviously when you don't have an instance you can't use the instance calling form. I think it is *common* practice to use the instance form when you can, but I'm not sure it is either superior or inferior to using the class form. It partly depends on how you have structured your code and why you are using static methods in the first place.

    @rhettinger
    Copy link
    Contributor

    Ian, the docs mostly serve to tell what a tool does. Best practices then emerge from actual practices and are determined by users.

    I don't see any bug here that needs to be solved and think it is time to close this tracker item. It has been consuming developer clock cycles without addressing any real, known issue.

    @ifreecarve
    Copy link
    Mannequin Author

    ifreecarve mannequin commented Jul 12, 2017

    As indicated earlier, I would prefer to see clear instructions on how to call a class's static method from another static method within the same class. Currently, it's only clear how to call from outside the class.

    If that's not going to happen, then I agree that this issue should be closed.

    @bitdancer
    Copy link
    Member

    It is documented how to call a static method when you don't have an instance. So when you don't (for example, inside a static method on the same class) you use that form (call the method on the class name).

    I realize you don't find this clear, but as Raymond says it is time to stop arguing about it; our rule is that the status quo wins when agreement is not reached for a change.

    Closing.

    @ezio-melotti ezio-melotti transferred this issue from another repository Apr 10, 2022
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    docs Documentation in the Doc dir type-feature A feature request or enhancement
    Projects
    None yet
    Development

    No branches or pull requests

    4 participants