Bruce Fenske
Bruce Fenske
Current implementation of the `Enumerable` results in inconsistent results when calling methods such as `first()`. For example: ```Python e = Enumerable((x for x in range(0, 5))) e.first() # 0 e.first()...
#38 Shows that performance tests are needed as part of build process in Azure Pipelines so that degradation in performance can be observed. Would be a good idea to also...
Need to add documentation for different classes used: Enumerable Grouping SortedEnumerable A folder /docs/api has been started
Hi Sean, I have added some additional python versions, pytest and coverage.py and submit to code coverage results to coveralls.io in your .travis.yml file. Please visit my [Travis CI page](https://travis-ci.org/viralogic/Meta)...
When I try to decompile a lambda function I get an assertion error: ``` func = lambda x: x.gpa < 20 or ((x.first_name == u'Bruce' and x.last_name == u'Fenske') or...