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 7680253
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T18:04:22+00:00 2026-05-31T18:04:22+00:00

How should __nonzero__ be implemented using the Python C-API? The reason I’m asking is

  • 0

How should __nonzero__ be implemented using the Python C-API?

The reason I’m asking is that I’m trying to fix a bug in some Python C-API code. There a __nonzero__ method is added to the methods table as follows:

static PyMethodDef PyFoo_methods[] = {
    ...
    { (char*)"__nonzero__", (PyCFunction)_Foo_nonzero, METH_KEYWORDS|METH_VARARGS, NULL },
    ...
};

PyTypeObject PyFoo_Type = {
    PyObject_HEAD_INIT(NULL),
    0,  
    ....
    (struct PyMethodDef*)PyFoo_methods, /* tp_methods */
    ...
};

However, when I test the code, bool() applied to a Foo object always returns True; the _Foo_nonzero function is never called.

What is wrong with the code?

  • 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-05-31T18:04:23+00:00Added an answer on May 31, 2026 at 6:04 pm

    Type customization in C is not done through specific methods in the method struct, but by filling particular fields of the PyTypeObject struct. In the case of __nonzero__, the C equivalent is the nb_nonzero member of the PyNumberMethods struct, which is pointed to by the tp_as_number member in the PyTypeObject struct: http://docs.python.org/c-api/typeobj.html#number-object-structures

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

Sidebar

Related Questions

Should model objects that go to the view be checked for null before going
Should functions that act on and object, say to fill it out from xml,
Should a highly dynamic website that is constantly generating new pages use a sitemap
I'm designing a language, and trying to decide whether true should be 0x01 or
I'm trying to understand how to integrate some quickcheck tests with cabal. This gist
I'm testing code that is designed to detect when a child process has segfaulted.
I am Using Python 2.7.1 on a Windows Server 2008 R2 x64 box. I'm
I am trying to write a program that will, when executed, will go through
I've having the opposite problem of many Python users--my program is using too little
A previous question asked if changing one line of code implemented persistent SSL connections.

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.