History log of /external/python/cpython2/Modules/errnomodule.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
acdc56d0d0ccea89d219d126c3ca1b9a28456bd5 11-May-2012 Ned Deily <nad@acm.org> Issue #14662: Prevent shutil failures on OS X when destination does not
support chflag operations. (Patch by Hynek Schlawack)
/external/python/cpython2/Modules/errnomodule.c
c83ea137d7e717f764e2f31fc2544f522de7d857 09-May-2010 Antoine Pitrou <solipsis@pitrou.net> Untabify C files. Will watch buildbots.
/external/python/cpython2/Modules/errnomodule.c
a4dd2e20e2302cc41a027cae5d0057dc2dff2ba6 13-Jun-2008 Amaury Forgeot d'Arc <amauryfa@gmail.com> Restore support for Microsoft VC6 compiler.
Some functions in the msvcrt module are skipped,
and socket.ioctl is enabled only when using a more recent Platform SDK.

(and yes, there are still companies that use a 10-years old compiler)
/external/python/cpython2/Modules/errnomodule.c
dd96db63f689e2f0d8ae5a1436b3b3395eec7de5 09-Jun-2008 Gregory P. Smith <greg@mad-scientist.com> This reverts r63675 based on the discussion in this thread:

http://mail.python.org/pipermail/python-dev/2008-June/079988.html

Python 2.6 should stick with PyString_* in its codebase. The PyBytes_* names
in the spirit of 3.0 are available via a #define only. See the email thread.
/external/python/cpython2/Modules/errnomodule.c
593daf545bd9b7e7bcb27b498ecc6f36db9ae395 26-May-2008 Christian Heimes <christian@cheimes.de> Renamed PyString to PyBytes
/external/python/cpython2/Modules/errnomodule.c
1ac754fa10f5d199d19911e21185d0970cb3073f 19-Jan-2006 Neal Norwitz <nnorwitz@gmail.com> Check return result from Py_InitModule*(). This API can fail.

Probably should be backported.
/external/python/cpython2/Modules/errnomodule.c
4bae2d5e46b5135dba523616fd0960fc915eb120 19-Nov-2003 Jack Jansen <jack.jansen@cwi.nl> Getting rid of code dependent on GUSI or the MetroWerks compiler.
/external/python/cpython2/Modules/errnomodule.c
fe51c6d66e0fbf6a142036bee2c448bd7fe8fefc 02-Aug-2002 Mark Hammond <mhammond@skippinet.com.au> Excise DL_EXPORT/DL_IMPORT from Modules/*. Required adding a prototype
for Py_Main().

Thanks to Kalle Svensson and Skip Montanaro for the patches.
/external/python/cpython2/Modules/errnomodule.c
14f8b4cfcb98de74b9c6e9316539be9e2a5cd31f 13-Jun-2002 Martin v. Löwis <martin@v.loewis.de> Patch #568124: Add doc string macros.
/external/python/cpython2/Modules/errnomodule.c
902952b910d1902df6611a6700f598cf50d2af92 26-Jan-2002 Tim Peters <tim.peters@gmail.com> Removed an XXX question (the answer is "yes" <wink>).
/external/python/cpython2/Modules/errnomodule.c
8586991099e4ace18ee94163a96b8ea1bed77ebe 02-Sep-2000 Guido van Rossum <guido@python.org> REMOVED all CWI, CNRI and BeOpen copyright markings.
This should match the situation in the 1.6b1 tree.
/external/python/cpython2/Modules/errnomodule.c
9bfd2bf5ede8e5d58775180d6867d81ddcdd3594 01-Sep-2000 Barry Warsaw <barry@python.org> Do the absolute minimal amount of modifications to eradicate
Py_FatalError() from module initialization functions. The importing
mechanism already checks for PyErr_Occurred() after module importation
and it Does The Right Thing.

Unfortunately, the following either were not compiled or tested by the
regression suite, due to issues with my development platform:

almodule.c
cdmodule.c
mpzmodule.c
puremodule.c
timingmodule.c
/external/python/cpython2/Modules/errnomodule.c
f3f33dcf03eaed3c4e720178f9d69205a66d6a91 21-Jul-2000 Thomas Wouters <thomas@python.org> Bunch of minor ANSIfications: 'void initfunc()' -> 'void initfunc(void)',
and a couple of functions that were missed in the previous batches. Not
terribly tested, but very carefully scrutinized, three times.

All these were found by the little findkrc.py that I posted to python-dev,
which means there might be more lurking. Cases such as this:

long
func(a, b)
long a;
long b; /* flagword */
{

and other cases where the last ; in the argument list isn't followed by a
newline and an opening curly bracket. Regexps to catch all are welcome, of
course ;)
/external/python/cpython2/Modules/errnomodule.c
f5accf38ea47ee142a299061469bc1428022e237 09-Jul-2000 Fredrik Lundh <fredrik@pythonware.com> - ANSI-fication
(patch #100784 by Peter Schneider-Kamp)
/external/python/cpython2/Modules/errnomodule.c
ffcc3813d82e6b96db79f518f4e67b940a13ce64 01-Jul-2000 Guido van Rossum <guido@python.org> Change copyright notice - 2nd try.
/external/python/cpython2/Modules/errnomodule.c
fd71b9e9d496caa510dec56a9b69966558d6ba5d 01-Jul-2000 Guido van Rossum <guido@python.org> Change copyright notice.
/external/python/cpython2/Modules/errnomodule.c
105906ff6ed975f46599aac1f48c20efc508dbd8 27-Jan-1999 Barry Warsaw <barry@python.org> initerrno(): Nailed a not-so-tiny memory leak. The de dictionary is
put into the module dict, but is never DECREF'd in this function, so
it and all its contents leak.
/external/python/cpython2/Modules/errnomodule.c
3886bb6997f8f7b0b64eed19045161e697f415fe 04-Dec-1998 Guido van Rossum <guido@python.org> Add DL_EXPORT() to all modules that could possibly be used
on BeOS or Windows.
/external/python/cpython2/Modules/errnomodule.c
549cb6ea030d257c6e037f8f55be1a7656396d15 11-Aug-1998 Guido van Rossum <guido@python.org> Added a module docstring (that's all this module needs).
/external/python/cpython2/Modules/errnomodule.c
851e7d51592693ec8da667dcddd6e726b03f9868 04-Nov-1997 Guido van Rossum <guido@python.org> Got rid of the errorstr dictionary, which is redundant now that
there's os.strerror() -- also, it would form a locale liability.
/external/python/cpython2/Modules/errnomodule.c
49f9d8e4051f11b40ca554bce988ce291af3ad8c 28-Sep-1997 Guido van Rossum <guido@python.org> Changes submitted by Marc-Andre Lemburg to add two tables: errorcode
maps errno numbers to errno names (e.g. EINTR), and errorcode maps
them to message strings. (The latter is redundant because
the new call posix.strerror() now does the same, but alla...)
/external/python/cpython2/Modules/errnomodule.c
fb421c82a953b3905b2b915dfaec7c679e73e191 11-Apr-1997 Guido van Rossum <guido@python.org> (Jack:) Mac only: get GUSI errno.h values too.
/external/python/cpython2/Modules/errnomodule.c
81a6fe9b98e75aae585dcf3e7c50b99629accb7c 14-Dec-1996 Roger E. Masse <rmasse@newcnri.cnri.reston.va.us> Removed a #inlclude <errno.h> since it's implied with "Python.h"
/external/python/cpython2/Modules/errnomodule.c
d266eb460e20ded087d01a29da0a230e235afc40 25-Oct-1996 Guido van Rossum <guido@python.org> New permission notice, includes CNRI.
/external/python/cpython2/Modules/errnomodule.c
4dc66220574d68a89a62cf64a5114b8fea877997 24-Jul-1996 Guido van Rossum <guido@python.org> Added Sam Rushing's errno module
/external/python/cpython2/Modules/errnomodule.c