attrs
Authors/Creators
Description
It's been a lot busier than the changelog indicates, but a lot of the work happened under the hood (like some impressive performance improvements). But we've got still one big new feature that's are worthy the holidays:
Fields now have an alias argument that allows you to set the field's name in the generated __init__ method. This is especially useful for those who aren't fans of attrs's behavior of stripping underscores from private attribute names.
This release would not be possible without my generous sponsors! Thank you to all of you making sustainable maintenance possible! If you would like to join them, go to https://github.com/sponsors/hynek and check out the sweet perks!
Above and BeyondVariomedia AG (@variomedia), Tidelift (@tidelift), Sentry (@getsentry), HiredScore (@HiredScore), FilePreviews (@filepreviews), and Daniel Fortunov (@asqui).
Maintenance Sustainers@rzijp, Adam Hill (@adamghill), Dan Groshev (@si14), Tamir Bahar (@tmr232), Adi Roiban (@adiroiban), Magnus Watn (@magnuswatn), David Cramer (@dcramer), Moving Content AG (@moving-content), Stein Magnus Jodal (@jodal), Iwan Aucamp (@aucampia), ProteinQure (@ProteinQure), Jesse Snyder (@jessesnyder), Rivo Laks (@rivol), Thomas Ballinger (@thomasballinger), @medecau, Ionel Cristian Mărieș (@ionelmc), The Westervelt Company (@westerveltco), Philippe Galvan (@PhilippeGalvan), Birk Jernström (@birkjernstrom), Jannis Leidel (@jezdez), Tim Schilling (@tim-schilling), Chris Withers (@cjw296), and Christopher Dignam (@chdsbd).
Not to forget 2 more amazing humans who chose to be generous but anonymous!
Full Changlog Backwards-incompatible Changes- Python 3.5 is not supported anymore. #988
- Python 3.6 is now deprecated and support will be removed in the next release. #1017
attrs.field()now supports an alias option for explicit__init__argument names.Get
__init__signatures matching any taste, peculiar or plain! The PEP 681 compatible alias option can be use to override private attribute name mangling, or add other arbitrary field argument name overrides. #950attrs.NOTHINGis now an enum value, making it possible to use with e.g.typing.Literal. #983Added missing re-import of
attr.AttrsInstanceto theattrsnamespace. #987Fix slight performance regression in classes with custom
__setattr__and speedup even more. #991Class-creation performance improvements by switching performance-sensitive templating operations to f-strings.
You can expect an improvement of about 5% -- even for very simple classes. #995
attrs.has()is now aTypeGuardforAttrsInstance. That means that type checkers know a class is an instance of anattrsclass if you check it usingattrs.has()(orattr.has()) first. #997Made
attrs.AttrsInstancestub available at runtime and fixed type errors related to the usage ofattrs.AttrsInstancein Pyright. #999On Python 3.10 and later, call
abc.update_abstractmethods()on dict classes after creation. This improves the detection of abstractness. #1001attrs's pickling methods now use dicts instead of tuples. That is safer and more robust across different versions of a class. #1009
Added
attrs.validators.not_(wrapped_validator)to logically invert wrapped_validator by accepting only values where wrapped_validator rejects the value with aValueErrororTypeError(by default, exception types configurable). #1010The type stubs for
attrs.cmp_using()now have default values. #1027To conform with PEP 681,
attr.s()andattrs.define()now accept unsafe_hash in addition to hash. #1065
Notes
Files
python-attrs/attrs-22.2.0.zip
Files
(248.4 kB)
| Name | Size | Download all |
|---|---|---|
|
md5:685807f38a7c074a8ee41b5e24d45b75
|
248.4 kB | Preview Download |
Additional details
Related works
- Is supplement to
- https://github.com/python-attrs/attrs/tree/22.2.0 (URL)