- 04 Eyl, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84506 | antoine.pitrou | 2010-09-04 22:53:29 +0200 (sam., 04 sept. 2010) | 5 lines Issue #8734: Avoid crash in msvcrt.get_osfhandle() when an invalid file descriptor is provided. Patch by Pascal Chambon. ........
-
- 09 May, 2010 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 18 Şub, 2010 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Visual Studio 2010, as msvcr100.dll is not a platform assembly anymore.
-
- 30 Ara, 2009 1 kayıt (commit)
-
-
Georg Brandl yazdı
-
- 29 Ara, 2009 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
-
- 30 Kas, 2008 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 13 Haz, 2008 1 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
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)
-
- 09 Haz, 2008 1 kayıt (commit)
-
-
Gregory P. Smith yazdı
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.
-
- 26 May, 2008 1 kayıt (commit)
-
-
Christian Heimes yazdı
-
- 10 Ara, 2007 2 kayıt (commit)
-
-
Christian Heimes yazdı
-
Christian Heimes yazdı
Added wide char api variants of getch and putch to msvcrt module. The wide char methods are required to fix #1578 in py3k. I figured out that they might be useful in 2.6, too.
-
- 19 Ock, 2006 2 kayıt (commit)
-
-
Tim Peters yazdı
a recent change inserted code before an auto declaration.
-
Neal Norwitz yazdı
Probably should be backported.
-
- 28 Tem, 2004 1 kayıt (commit)
-
-
Thomas Heller yazdı
-
- 31 Mar, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 29 Agu, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
pyport.h: typedef a new Py_intptr_t type. DELICATE ASSUMPTION: That HAVE_UINTPTR_T implies intptr_t is available as well as uintptr_t. If that turns out not to be true, things must get uglier (C99 wants both, so I think it's an assumption we're *likely* to get away with). thread_nt.h, PyThread_start_new_thread: MS _beginthread is documented as returning unsigned long; no idea why uintptr_t was being used. Others: Always use Py_[u]intptr_t, never [u]intptr_t directly.
-
- 12 Ara, 2000 1 kayıt (commit)
-
-
Tim Peters yazdı
Still needs docs; see bug report (which was reassigned to Fred) for MS's docs.
-
- 30 Haz, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
Trent Mick <trentm@activestate.com>: Fix PC/msvcrtmodule.c and PC/winreg.c for Win64. Basically: - sizeof(HKEY) > sizeof(long) on Win64, so use PyLong_FromVoidPtr() instead of PyInt_FromLong() to return HKEY values on Win64 - Check for string overflow of an arbitrary registry value (I know that ensuring that a registry value does not overflow 2**31 characters seems ridiculous but it is *possible*). Closes SourceForge patch #100517.
-
- 16 Şub, 1999 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 29 May, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
_getch(), _getche(). Fix bogus error return when open_osfhandle() doesn't have the right argument list.
-
- 13 Agu, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
of Python file objects. Added open_osfhandle() (Mark had done some work for that), get_osfhandle(), setmode(), and the console I/O functions kbhit(), getch(), getche(), ungetch(), and putch().
-
- 07 Agu, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
main_nt.c is gone -- we can use Modules/python.c now. Added Mark Hammond's module msvcrt.c (untested). Added several new symbols.
-