This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: static member functions
Type: Stage:
Components: Interpreter Core Versions:
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: gvanrossum Nosy List: gvanrossum, hardcoreholly, nobody
Priority: normal Keywords: patch

Created on 2001-04-23 22:39 by anonymous, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
StaticMethods.patch nobody, 2001-04-23 22:39
Messages (4)
msg36440 - (view) Author: Nobody/Anonymous (nobody) Date: 2001-04-23 22:39
This allows for class methods to be called statically 
without the need for workaround abuse as described in 
the python FAQ (or any other method involving grabbing 
the "im_func" member from an unbound method object).

This patch changes the "call_method" function in 
ceval.c. It removes the improper 'class type 
enforcement' on unbound method objects and just passes 
the arguments as is.

This allows for natural and clean static methods 
inside classes.

The only thing potentially broken with this patch is a 
looser guarantee that the "self" value for a method 
would be some inherited type instance. This is far 
less 'dangerous for abuse' than other python class 
designs (no private members, etc).

With this the static method example in the FAQ is much 
more cleanly realized. notice, no "self" member for 
static methods...


class C:
    count = 0   
    def __init__(self):
        C.count += 1
    def getcount():
        return C.count 
    def sum(x, y):
        return x + y
        
C(); C()
c = C()
print C.getcount()  # prints 3
print c.getcount()  # prints 3
print C.sum(27, 15) # prints 42
msg36441 - (view) Author: Mark Kimsal (hardcoreholly) Date: 2001-04-23 22:47
Logged In: YES 
user_id=89302

an application programmer could still secure the type of 
the arguments if s/he felt it was necessary by raising the 
unbound method exception if the first arg was not the 
expected type.
msg36442 - (view) Author: Nobody/Anonymous (nobody) Date: 2001-04-23 23:00
Logged In: NO 

btw, i did submit with my email address, but sourceforge 
has relabeled me as anonymous. please respond to

"pete at shinners dot org" 

should that be required. doh, i see sourceforge didn't 
respect my example formatting either.
msg36443 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2001-08-09 16:31
Logged In: YES 
user_id=6380

Rejected.  In Python 2.2, you can do this using the new
"staticmethod" built-in.
History
Date User Action Args
2022-04-10 16:04:00adminsetgithub: 34404
2001-04-23 22:39:48anonymouscreate