Change by igo95862 :
--
stage: patch review -> resolved
status: open -> closed
___
Python tracker
<https://bugs.python.org/issue39774>
___
___
Python-bugs-
New submission from igo95862 :
This is package documentation:
https://docs.python.org/3/tutorial/modules.html#packages
To make package executable (python -m package) you need to create a file
__main__.py in the package directory.
This is pretty much not documented anyone aside of trying
New submission from igo95862 :
The issue is that the function names are too similar to other function that do
completely different things.
`PyObject_Init` this function does not use `__init__` at all.
What it does is sets the already allocated object pointer to the specific type
and
Change by igo95862 :
--
type: -> enhancement
___
Python tracker
<https://bugs.python.org/issue42292>
___
___
Python-bugs-list mailing list
Unsubscrib
igo95862 added the comment:
I found out that you can call the type as an object in order to create new
object.
Example:
SdBusMessageObject *new_message_object = (SdBusMessageObject
*)PyObject_Call((PyObject *)&SdBusMessageType, dummy_tuple, dummy_dict);
This is somewhat not docume