Message197942
| Author |
alanh |
| Recipients |
alanh, r.david.murray, vstinner |
| Date |
2013年09月16日.20:03:11 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1379361791.49.0.733492906803.issue19036@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
You'll see the error on any platform that doesn't include "locale.h" when it should, i.e. a platform that doesn't have NL_LANGINFO. This is the build error.....
Python/fileutils.c: In function 'check_force_ascii':
Python/fileutils.c:101:5: warning: implicit declaration of function 'setlocale' [-Wimplicit-function-declaration]
Python/fileutils.c:101:21: error: 'LC_CTYPE' undeclared (first use in this function)
Python/fileutils.c:101:21: note: each undeclared identifier is reported only once for each function it appears in
You can simulate it on Linux, by just commenting out the #include for "locale.h" and voila.
But for completeness, it's an m68k Atari platform. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2013年09月16日 20:03:11 | alanh | set | recipients:
+ alanh, vstinner, r.david.murray |
| 2013年09月16日 20:03:11 | alanh | set | messageid: <1379361791.49.0.733492906803.issue19036@psf.upfronthosting.co.za> |
| 2013年09月16日 20:03:11 | alanh | link | issue19036 messages |
| 2013年09月16日 20:03:11 | alanh | create |
|