Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c5832ff

Browse files
committed
Changes for posix threads
1 parent e6ef032 commit c5832ff

2 files changed

Lines changed: 19 additions & 0 deletions

File tree

ChangeLog

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
Mon May 9 10:37:48 1994 Guido van Rossum ([email protected])
2+
3+
* acconfig.h: added _POSIX_THREADS define
4+
5+
* configure.in: test for -lpthreads; add directory argument to
6+
--with-thread to LIBS as -L option
7+
8+
* Objects/stringobject.c (formatstring): don't DECREF result of
9+
strobject() before using it
10+
11+
* Doc/libtypes.tex: fix typo in table of list methods; clarify
12+
truncation behavior of floating point formatting
13+
14+
* Doc/ref3.tex: clarify defaults for __repr__, __cmp__ and
15+
__str__; correct (some) descriptions of class constructors
16+
117
Fri May 6 11:25:26 1994 Guido van Rossum ([email protected])
218

319
* various files: micro changes needed to compile on Mac;

acconfig.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
(e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */
2424
#undef HAVE_STDARG_PROTOTYPES
2525

26+
/* Define if you have POSIX threads */
27+
#undef _POSIX_THREADS
28+
2629
/* Define to empty if the keyword does not work. */
2730
#undef signed
2831

0 commit comments

Comments
 (0)