-
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
-
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
338 contributions in the last year
Contribution activity
December 2022
Created 4 commits in 1 repository
Created a pull request in python/cpython that received 6 comments
GH-98363: Have batched() return tuples
On python-ideas, I got some pushback on the decision to return lists. After rereading the original thread and looking at the use cases with fresh e…
Opened 5 other pull requests in 1 repository
python/cpython
1
open
4
merged
Reviewed 6 pull requests in 1 repository
python/cpython
6 pull requests
- GH-100425: Improve accuracy of builtin sum() for float inputs
- gh-99631: Add custom loads and dumps support for the shelve module
- gh-100272: Fix JSON serialization of OrderedDict
- gh-60203: Revert changes in cycle.__setstate__
- [3.11] gh-99934: test_marshal.py: add more elements in test_deterministic_sets (GH-99935)
- gh-99934: test_marshal.py: add more elements in test_deterministic_sets
Created an issue in python/cpython that received 4 comments
Improve accuracy of builtin sum() for float inputs
Currently sum()
makes no efforts to improve accuracy over a simple running total. We do have math.fsum()
that makes extreme efforts to be almost pe…