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 ragreddy
Recipients mark.dickinson, ragreddy, rhettinger, serhiy.storchaka, vstinner
Date 2016-04-14.23:28:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1460676535.4.0.73816514278.issue26743@psf.upfronthosting.co.za>
In-reply-to
Content
Couple more outputs:

----------------
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
   significant byte first (like Motorola and SPARC, unlike Intel). */
#if defined AC_APPLE_UNIVERSAL_BUILD
# if defined __BIG_ENDIAN__
#  define WORDS_BIGENDIAN 1
# endif
#else
# ifndef WORDS_BIGENDIAN
#  define WORDS_BIGENDIAN 1
# endif
#endif
----------------

Math works in some cases.
----------------
>>> import math
>>> math.sqrt(2)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ValueError: math domain error
>>> math.floor(2.5)
2.0
>>>
----------------


Also, could you please let me know the train of thought and ask for all the outputs as much as possible in one go? because I feel like I am delaying your debugging.
History
Date User Action Args
2016-04-14 23:28:55ragreddysetrecipients: + ragreddy, rhettinger, mark.dickinson, vstinner, serhiy.storchaka
2016-04-14 23:28:55ragreddysetmessageid: <1460676535.4.0.73816514278.issue26743@psf.upfronthosting.co.za>
2016-04-14 23:28:55ragreddylinkissue26743 messages
2016-04-14 23:28:55ragreddycreate