Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8468811
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T16:02:46+00:00 2026-06-10T16:02:46+00:00

Is it possible to get the function name from a operator.methodcaller in Python? import

  • 0

Is it possible to get the function name from a operator.methodcaller in Python?

import operator as op
mc = op.methodcaller('foo')
print magic(mc) #should print 'foo'

How do I do the magic to get the name of the method which methodcaller is calling?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T16:02:47+00:00Added an answer on June 10, 2026 at 4:02 pm

    It is, but you need to dig into the C internals (not a recommended solution):

    from ctypes import *
    
    PyObject_HEAD = [
        ("ob_refcnt", c_size_t),
        ("ob_type", c_void_p),
    ]
    
    class methodcallerobject(Structure):
        _fields_ = PyObject_HEAD + [
            ("name", c_void_p),
            ("args", c_void_p),
            ("kwds", c_void_p),
        ]
    
    def magic(methcallobj):
        if not isinstance(methcallobj, operator.methodcaller):
            raise TypeError("not a methodcaller")
    
        c_methcallobj = cast(c_void_p(id(methcallobj)), POINTER(methodcallerobject)).contents
    
        return cast(c_methcallobj.name, py_object).value
    

    Note that this only works on CPython and is not particularly beautiful. But if this is the only solution available, it’s better than nothing.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: How do I get the name of a function or method from
Is it possible to get the 'nth' return value from a function without having
Possible Duplicate: Get file name from URI string in C# How to extract file
Possible Duplicate: How can I get the name of function inside a JavaScript function?
Is it possible get the assembly information from an imported MEF function? I need
Possible Duplicate: Retrieving the calling method name from within a method (C#) I have
Possible Duplicate: Returning multiple values from a C++ function /************************************************/ /* Name: premserv */
long shot: is it possible to get the name of a calling function or
Is it possible to get java object attributes from javascript function. Example by using
Given the output of inspect.stack() , is it possible to get the function objects

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.