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 corona10
Recipients corona10, ronaldoussoren
Date 2018-07-05.06:08:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530770915.94.0.56676864532.issue33955@psf.upfronthosting.co.za>
In-reply-to
Content
benchmark result:

22.639114022999998 secs  master (+0%)
22.806662271 secs PR 8046 (-0.74%)

def fib(n):
    if n == 0:
        return 0
    if n == 1:
        return 1
    return fib(n-2) + fib(n-1)

if __name__ == '__main__':
    import timeit
    print(timeit.timeit("fib(10)", setup="from __main__ import fib"))
History
Date User Action Args
2018-07-05 06:08:35corona10setrecipients: + corona10, ronaldoussoren
2018-07-05 06:08:35corona10setmessageid: <1530770915.94.0.56676864532.issue33955@psf.upfronthosting.co.za>
2018-07-05 06:08:35corona10linkissue33955 messages
2018-07-05 06:08:35corona10create