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 FreedomKnight
Recipients FreedomKnight
Date 2013-10-12.12:02:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381579369.49.0.578493785687.issue19231@psf.upfronthosting.co.za>
In-reply-to
Content
the code is simple, so i paste all of mycode

    #!/usr/bin/env python3
    from ctypes import *

    cdll.LoadLibrary("libc.so.6")
    libc = CDLL("libc.so.6")
    libc.printf("hello\n")

result:
h

expect result:
hello

plateform:
fedora 19 x64
python3 (3.3.2)
History
Date User Action Args
2013-10-12 12:02:49FreedomKnightsetrecipients: + FreedomKnight
2013-10-12 12:02:49FreedomKnightsetmessageid: <1381579369.49.0.578493785687.issue19231@psf.upfronthosting.co.za>
2013-10-12 12:02:49FreedomKnightlinkissue19231 messages
2013-10-12 12:02:49FreedomKnightcreate