Staging
v0.5.1
https://github.com/python/cpython
Revision 193c34ba86bbe5b0c35c66d1edc89e69fed31391 authored by Ezio Melotti on 09 May 2011, 03:28:42 UTC, committed by Ezio Melotti on 09 May 2011, 03:28:42 UTC
1 parent 7055064
Raw File
Tip revision: 193c34ba86bbe5b0c35c66d1edc89e69fed31391 authored by Ezio Melotti on 09 May 2011, 03:28:42 UTC
#11910: change import_fresh_module to return None when one of the "fresh" modules can not be imported.
Tip revision: 193c34b
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