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 florin.papa
Recipients florin.papa
Date 2015-08-25.13:09:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1440508179.01.0.645988058251.issue24934@psf.upfronthosting.co.za>
In-reply-to
Content
Hi All,

My name is Florin Papa and I work in the Server Languages Optimizations Team at Intel Corporation.

I would like to submit a patch that solves compatibility issues of the django_v2 benchmark in the Grand Unified Python Benchmark. The django_v2 benchmark uses inspect.getargspec(), which is deprecated and was removed in Python 3.6. Therefore, it crashes with the message "ImportError: cannot import name 'getargspec'" when using the latest version of Python on the default branch.

The patch modifies the benchmark to use inspect.signature() when Python version is 3.6 or above and keep using inspect.getargspec() otherwise.
 

Regards,
Florin
History
Date User Action Args
2015-08-25 13:09:39florin.papasetrecipients: + florin.papa
2015-08-25 13:09:39florin.papasetmessageid: <1440508179.01.0.645988058251.issue24934@psf.upfronthosting.co.za>
2015-08-25 13:09:38florin.papalinkissue24934 messages
2015-08-25 13:09:38florin.papacreate