A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://mail.python.org/pipermail/python-dev/2007-March/072263.html below:

[Python-Dev] Calling base class methods from C

[Python-Dev] Calling base class methods from C [Python-Dev] Calling base class methods from C"Martin v. Löwis" martin at v.loewis.de
Thu Mar 22 08:07:25 CET 2007
>   class List(list):
>     def append(self, x):
>       print x
>       List.append(self, x)  # What is the C equivalent of this call?

Always literally what you write in Python (assuming you meant
list.append):

   PyObject_CallMethod(PyList_Type, "append", "OO", self, x);

HTH,
Martin

More information about the Python-Dev mailing list

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4