[Python-checkins] CVS: python/dist/src/Modules posixmodule.c

Barry A. Warsaw bwarsaw@cnri.reston.va.us
Tue, 9 Feb 1999 14:31:52 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Modules
In directory anthem:/projects/python/develop/bwarsaw/python/dist/src/Modules

Modified Files:
	posixmodule.c 
Log Message:
Got rid of the file-global PosixError.  This was redundant since it
was just an alias for PyExc_OSError and the way we were doing it was
causing a (small) memory leak anyway.  Just use PyExc_OSError
everywhere.