Staging
v0.5.1
https://github.com/python/cpython
Revision cd97da3b1d61be00bb06f3264a60418dbdb83bd8 authored by Tim Peters on 30 August 2004, 02:58:59 UTC, committed by Tim Peters on 30 August 2004, 02:58:59 UTC
Bugfix candidate -- although long_pow() is so different now I doubt a
patch would apply to 2.3.
1 parent 47e52ee
Raw File
Tip revision: cd97da3b1d61be00bb06f3264a60418dbdb83bd8 authored by Tim Peters on 30 August 2004, 02:58:59 UTC
long_pow(): Fix more instances of leaks in error cases.
Tip revision: cd97da3
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