-
Mutable Minds, Inc.
- Santa Clara, California
Highlights
- Pro
Block or Report
Block or report rhettinger
Contact GitHub support about this user’s behavior. Learn more about reporting abuse.
Report abusePopular repositories Loading
-
modernpython Public
Sample code for the video course: Modern Python: Big Ideas, Little Code
-
-
-
data_science Public
Forked from sdelquin/data_science
Different study cases of handling and analysis data, using python tools.
-
thesemicolon Public
Forked from shreyans29/thesemicolon
This repository contains Ipython notebooks and datasets for the data analytics youtube tutorials on The Semicolon.
-
revad Public
Forked from Rufflewind/revad
Reverse-mode automatic differentiation in Rust (experiment)
Rust 1
257 contributions in the last year
Contribution activity
November 2021
Created 8 commits in 1 repository
Created a pull request in python/cpython that received 21 comments
Opened 8 other pull requests in 1 repository
python/cpython
7
merged
1
closed
- bpo-45852: Fix the Counter/iter test for statistics.mode()
- bpo-45851: Avoid full sort in statistics.multimode()
- bpo-19072: Classmethod can wrap other classmethod like descriptors. See b83861f
- bpo-45235: Revert an argparse bugfix that caused a regression
- bpo-45701: Improve documentation for *typed* parameter
- Minor edit: Factor-out constant calculation.
- bpo-45766: Add direct proportion option to linear_regression().
- bpo-45735: Promised that lists can be used for Thread args.
Reviewed 5 pull requests in 1 repository
python/cpython
5 pull requests
- bpo-45876: Improve accuracy for stdev() and pstdev() in statistics
- [3.10] bpo-44295: ensure deprecation warning from assertDictContainsSubset points at actual test code
- bpo-45235: Revert an argparse bugfix that caused a regression
- bpo-45766: Add direct proportion option to linear_regression().
-
bpo-45679: add
tupletests withlru_cachetotest_functools
Created an issue in python/typeshed that received 1 comment
Annotation for builtin max() function uses wrong comparison operator
The stubs for max() use SupportsLessThanT but should use SupportsGreaterThanT instead.
The CPython source uses Py_GT.
Instrumenting calls to max() …