Staging
v0.5.1
https://github.com/python/cpython
Revision a89633c4f7566193cf6ac4be9219672e7f7abc9d authored by R. David Murray on 28 September 2009, 19:53:25 UTC, committed by R. David Murray on 28 September 2009, 19:53:25 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r75111 | r.david.murray | 2009-09-28 12:57:45 -0400 (Mon, 28 Sep 2009) | 5 lines

  Prevent test_bad_address failure when a domain in the dns search
  path implements a '*' default rule.  Also update comment with
  a more complete explanation of the difficulties inherent in
  the test.
........
1 parent e4829f1
Raw File
Tip revision: a89633c4f7566193cf6ac4be9219672e7f7abc9d authored by R. David Murray on 28 September 2009, 19:53:25 UTC
Merged revisions 75111 via svnmerge from
Tip revision: a89633c
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