diff options
author | Nima Talebi <nima@autonomy.net.au> | 2009-05-23 14:37:01 +1000 |
---|---|---|
committer | Nima Talebi <nima@autonomy.net.au> | 2009-05-23 14:37:01 +1000 |
commit | a18a72fab2a622077d5257003b09be30ab283339 (patch) | |
tree | 6325f80f94bea1cba7f1018a58d8a3f4826606e3 /src/xmlpythonizer.c | |
parent | 90c5bac90b3366b897d7c34a4bba2a31e608b62c (diff) | |
download | python-dmidecode-a18a72fab2a622077d5257003b09be30ab283339.tar.gz python-dmidecode-a18a72fab2a622077d5257003b09be30ab283339.tar.xz python-dmidecode-a18a72fab2a622077d5257003b09be30ab283339.zip |
More cleanup
Don't write to stdout unless in debug mode (with respect to writing
to memory devices.
Added the xml datafile to setup (distutils).
Updated test case (incorporating color and cleaning up tests).
Diffstat (limited to 'src/xmlpythonizer.c')
-rw-r--r-- | src/xmlpythonizer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmlpythonizer.c b/src/xmlpythonizer.c index d987802..dceeaa2 100644 --- a/src/xmlpythonizer.c +++ b/src/xmlpythonizer.c @@ -880,7 +880,7 @@ PyMODINIT_FUNC initxmlpythonizer(void) { Py_InitModule3((char *)"xmlpythonizer", DemoMethods, "XML to Python Proof-of-Concept Python Module"); - PyObject *version = PyString_FromString("2.10"); + PyObject *version = PyString_FromString("3.10.6"); Py_INCREF(version); PyModule_AddObject(module, "version", version); } |