Staging
v0.5.1
https://github.com/python/cpython
Revision f681e93e46925e862a8b0fa4b6e9e341fd8de3c2 authored by Victor Stinner on 29 November 2018, 22:38:35 UTC, committed by GitHub on 29 November 2018, 22:38:35 UTC
On Windows, test_env_changed() of test_regrtest is now skipped
because it fails  randomly for an unknown reason on "x86 Windows XP
VS9.0 2.7" buildbot worker.
1 parent 3600300
Raw File
Tip revision: f681e93e46925e862a8b0fa4b6e9e341fd8de3c2 authored by Victor Stinner on 29 November 2018, 22:38:35 UTC
bpo-34021: Windows skips test_regrtest.test_env_changed() (GH-10804)
Tip revision: f681e93
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