Staging
v0.5.1
https://github.com/python/cpython
Revision d3e6c9e4dcf3fd4e97a2526164cc7e28766b8e6d authored by Serhiy Storchaka on 14 November 2016, 17:25:44 UTC, committed by Serhiy Storchaka on 14 November 2016, 17:25:44 UTC
non-integer numbers.  Django tests depend on this.
1 parent 2167666
Raw File
Tip revision: d3e6c9e4dcf3fd4e97a2526164cc7e28766b8e6d authored by Serhiy Storchaka on 14 November 2016, 17:25:44 UTC
Issue #28563: Make plural form selection more lenient and accepting
Tip revision: d3e6c9e
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