This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ysj.ray
Recipients Arfrever, draghuram, eric.araujo, ggenellina, giampaolo.rodola, gvanrossum, ijmorlan, terry.reedy, ysj.ray, zooko
Date 2010-07-21.08:00:40
SpamBayes Score 0.015346996
Marked as misclassified No
Message-id <1279699243.25.0.904583321706.issue9299@psf.upfronthosting.co.za>
In-reply-to
Content
I found in Modules/posixmodule.c that:


#if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__)
#define INITFUNC PyInit_nt
#define MODNAME "nt"

#elif defined(PYOS_OS2)
#define INITFUNC PyInit_os2
#define MODNAME "os2"

#else
#define INITFUNC PyInit_posix
#define MODNAME "posix"
#endif


I also found the "ce" module in Python Windows CE (http://pythonce.sourceforge.net/) source: Modules/posixmodule.c, seeing http://docs.python.org/py3k/using/windows.html. This means the "nt", "os2", "ce", "posix" module are all implemented in Modules/posixmodule.c.
History
Date User Action Args
2010-07-21 08:00:43ysj.raysetrecipients: + ysj.ray, gvanrossum, terry.reedy, zooko, ggenellina, draghuram, giampaolo.rodola, ijmorlan, eric.araujo, Arfrever
2010-07-21 08:00:43ysj.raysetmessageid: <1279699243.25.0.904583321706.issue9299@psf.upfronthosting.co.za>
2010-07-21 08:00:41ysj.raylinkissue9299 messages
2010-07-21 08:00:40ysj.raycreate