Staging
v0.5.1
https://github.com/python/cpython
Revision 607e31eddf07865fa6308cb7f5e2f75d290d1bda authored by Senthil Kumaran on 09 February 2012, 09:43:31 UTC, committed by Senthil Kumaran on 09 February 2012, 09:43:31 UTC
where relevant, instead send method. Patch contributed by Brian Brazil.
1 parent ebf691d
Raw File
Tip revision: 607e31eddf07865fa6308cb7f5e2f75d290d1bda authored by Senthil Kumaran on 09 February 2012, 09:43:31 UTC
Fix Issue #6005: Examples in the socket library documentation use sendall,
Tip revision: 607e31e
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