Staging
v0.5.1
https://github.com/python/cpython
Revision 8c3bc862fa8e129538e4d519b3aa6c827b50faab authored by Amaury Forgeot d'Arc on 14 June 2008, 09:44:41 UTC, committed by Amaury Forgeot d'Arc on 14 June 2008, 09:44:41 UTC
explicitely disable the use of Windows XP themes when compiling tk.
This is also consistent with the WINVER=0x0500 option.
1 parent d25cdc3
Raw File
Tip revision: 8c3bc862fa8e129538e4d519b3aa6c827b50faab authored by Amaury Forgeot d'Arc on 14 June 2008, 09:44:41 UTC
Since python2.6 must run on Windows 2000,
Tip revision: 8c3bc86
unixstuff.h
/* Fudge unix isatty and fileno for RISCOS */

#include <stdio.h>
#include <time.h>

int fileno(FILE *f);
int isatty(int fn);
unsigned int unixtime(unsigned int ld,unsigned int ex);
int acorntime(unsigned int *ex, unsigned int *ld, time_t ut);

int isdir(char *fn);
int isfile(char *fn);
int object_exists(char *fn);

back to top