Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fdisk.c: add partition module object | Jose M. Guisado Gomez | 2022-04-26 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | Call Partition_AddModuleObject when initializing the python module. Fixes bug when using the Partition class but the class has not been added to the module via Py_TypeReady. A common error was the type not being ready (missing attributes): >>> for pa in cxt.parts: ... print(pa.partno) ... Traceback (most recent call last): File "<stdin>", line 2, in <module> AttributeError: 'libfdisk.Partition' object has no attribute 'partno' | ||||
* | Add COPYING and license headers | Jose M. Guisado Gomez | 2022-04-07 | 1 | -0/+12 |
| | | | | LGPL2.1 or later. | ||||
* | Initial commit | Jose M. Guisado Gomez | 2022-04-06 | 1 | -0/+40 |
Add sources, setup.py and .gitignore Build/Install: python setup.py build python setup.py install |