This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
| Author | py.user |
|---|---|
| Recipients | docs@python, ezio.melotti, mrabarnett, py.user, r.david.murray |
| Date | 2012年04月07日.03:19:40 |
| SpamBayes Score | -1.0 |
| Marked as misclassified | Yes |
| Message-id | <1333768781.49.0.129115613351.issue14519@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
#include <stdio.h>
int main(void)
{
unsigned n;
scanf("%x", &n);
printf("%u\n", n);
return 0;
}
[guest@localhost c]$ .ansi t.c -o t
[guest@localhost c]$ ./t
0xa
10
[guest@localhost c]$ ./t
a
10
[guest@localhost c]$
[guest@localhost c]$ alias .ansi
alias .ansi='gcc -ansi -pedantic -Wall'
[guest@localhost c]$ |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2012年04月07日 03:19:41 | py.user | set | recipients: + py.user, ezio.melotti, mrabarnett, r.david.murray, docs@python |
| 2012年04月07日 03:19:41 | py.user | set | messageid: <1333768781.49.0.129115613351.issue14519@psf.upfronthosting.co.za> |
| 2012年04月07日 03:19:40 | py.user | link | issue14519 messages |
| 2012年04月07日 03:19:40 | py.user | create | |