Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-05-13 | Update README CI badges | Taneli Hukkinen | |
2020-05-13 | Fix return type annotation of Map.__reduce__ | Taneli Hukkinen | |
2020-05-13 | Add python version requirement metadata | Taneli Hukkinen | |
2020-04-22 | Drop Travis and Appveyor CI | Elvis Pranskevichus | |
Switch to Github Actions exclusively | |||
2020-04-22 | Update the test workflow | Elvis Pranskevichus | |
2020-04-22 | Add Github release workflowv0.12 | Elvis Pranskevichus | |
2020-04-22 | Define NDEBUG actively | Elvis Pranskevichus | |
`NDEBUG` is not defined by the standard library or the compiler by default, so make sure it's defined when building non-debug builds. | |||
2020-04-22 | A bunch of fixes | Yury Selivanov | |
* Fix #26: `ifdef NDEBUG` should be `ifndef NDEBUG` * More tests for #24 * Add a `DEBUG_IMMUTABLES` env var to build debug builds | |||
2020-04-22 | Fix the mutation API to maintain elements count correctly (#25, #24) | TIGirardi | |
2019-11-04 | Bump the version to 0.12 | Yury Selivanov | |
2019-11-04 | Fix manylinux for 3.8 | Yury Selivanov | |
2019-11-02 | Add Python 3.8 support (#16) | Bruno Oliveira | |
Fix #15 | |||
2019-10-11 | Bump the version to 0.11v0.11 | Yury Selivanov | |
2019-10-11 | Include py.typed/*.pyi in MANIFEST.in | Yury Selivanov | |
2019-10-11 | fix: add package_data to setup.py (#14) | Anton Agestam | |
2019-10-07 | Bump the version to 0.10v0.10 | Yury Selivanov | |
2019-10-03 | Add typing information (#13) | Anton Agestam | |
2018-12-13 | Bump the version to 0.9v0.9 | Yury Selivanov | |
2018-12-13 | Simplify MapMutation.__exit__() implementation | Yury Selivanov | |
2018-12-13 | Don't allow MapMutation.update() calls after the mutation is finished | Yury Selivanov | |
2018-12-13 | Bump the version to 0.8v0.8 | Yury Selivanov | |
2018-12-13 | Add MapMutation.update(); make creating Map from a Map faster; fix bugs | Yury Selivanov | |
* Add new MapMutation.update() method that behaves like MutableMapping.update() * Make it faster to create a Map() from another Map() -- it's now an O(1) operation. * update() method had a bug that could cause the update Map object to have a wrong number of elements. | |||
2018-11-20 | Bump the version to 0.7v0.7 | Yury Selivanov | |
2018-11-20 | Fix README markup | Yury Selivanov | |
2018-11-20 | Make MapMutation unpickleable | Yury Selivanov | |
2018-11-20 | ci: Test 3.7 on AppVeyor and macOS | Yury Selivanov | |
2018-11-20 | Fix error message: "has been finalized" -> "has been finished" | Yury Selivanov | |
2018-11-20 | Rename .finalize() to .finish() | Yury Selivanov | |
2018-11-20 | Fix comment | Yury Selivanov | |
2018-11-20 | ci: Test/build 3.7 wheels | Yury Selivanov | |
2018-11-20 | Get rid of f-strings to restore 3.5 compatibility | Yury Selivanov | |
2018-11-20 | Update readme | Yury Selivanov | |
2018-11-20 | Make MapMutation a context manager | Yury Selivanov | |
2018-11-20 | Implement mutable mapping API for MapMutation; add after-finalize checks | Yury Selivanov | |
2018-11-20 | Implement pickle support | Yury Selivanov | |
2018-11-20 | Fix .keys() and other views to support being iterated more than once | Yury Selivanov | |
2018-11-20 | Implement Map.update(); support initializing Map from dict/iter/map | Yury Selivanov | |
2018-11-20 | Implement Map.mutate() method | Yury Selivanov | |
2018-06-08 | readme: add pypi badge | Yury Selivanov | |
2018-06-07 | Bump the version to 0.6v0.6 | Yury Selivanov | |
2018-06-07 | Fix a crash in map constructor | Yury Selivanov | |
More details in https://bugs.python.org/issue33803 | |||
2018-05-01 | Unbreak macOS build on Travisv0.5 | Elvis Pranskevichus | |
2018-05-01 | Reject keyword and positional arguments in __new__. Fixes #2. | Yury Selivanov | |
2018-04-07 | pymap: Streamline .assoc() method | Yury Selivanov | |
2018-04-03 | setup: Add long_description | Yury Selivanov | |
2018-04-03 | Bump the version to 0.4v0.4 | Yury Selivanov | |
2018-04-03 | make: add "clean" target | Yury Selivanov | |
2018-04-03 | Coverage: 100% | Yury Selivanov | |
2018-04-03 | pymap: Use hashing algorithm from collections.abc.Set | Yury Selivanov | |
2018-04-03 | Make Map a subclass of collecitons.abc.Mapping | Yury Selivanov | |