Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#341: Fixes for type-parameters without arguments #346

Merged
merged 9 commits into from
Aug 14, 2022

Conversation

USSX-Hares
Copy link
Collaborator

@USSX-Hares USSX-Hares commented Mar 22, 2022

Closes #341

Changes:

  • Updated tests.entities and tests.test_collections to include alternative forms of the same collection types
    (like builtins.list ("builtin") and typing.List ("generic" "unbound") in addition to the existing typing.List[TypeA])
  • Added new internal helper class core._NoArgs utils._NoArgs and its singleton instance core._NO_ARGS utils._NO_ARGS
  • Added new methods core._extract_args() utils._get_type_args() and core._extract_type_parameter() utils._get_type_arg_param() which return either tp.__args__ value or _NO_ARGS constant
  • All "unsafe" usages of tp.__args__ replaced with the new methods
  • Added TypeVar special case check for core._decode_dict_keys()
    • Note: This is a special case for Python 3.7 and Python 3.8.
      By some reason, "unbound" dicts are counted as having key type parameter to be TypeVar('KT')
  • Added tp.__origin__ == None special case for utils._get_type_origin()
    • Note: This is a special case for Python 3.6 exclusively.
      By some reason, some "unbound" types (typing.Set, typing.Tuple, and typing.FrozenSet) are considered to have this field with None rather than generating an AttributeError
    • Same for tp.__args__ and dicts

Status

  • Without the fix, new tests fail on all versions of Python, but fail differently (see report in the comments of typing module types without parameters broken when using Python 3.9 #341)
  • By now, there are no failures related to the missing tp.__args__:
    • Python 3.6: Decodes "unbound" (but not "builtin") sets, tuples, and frozensets as lists rather than required types
    • Python 3.7-3.8: Fails to decode "unbound" and "builtin" dicts by trying to instantiate uninstantiatable typing.Dict.
      Was actually caused by the strange structure of dict class nesting in specifically these Python versions, see note above
    • No longer fails on Python 3.9+
    • (New) Python 3.6: Unable to decode "unbound" typing.Dict and dict keys on Python 3.6 exclusively

Sorry, something went wrong.

USSX-Hares added 7 commits March 22, 2022 15:59
 * Added new internal helper type `core._NoArgs` and its singleton instance `core._NO_ARGS`
 * Added new methods `core._extract_args()` and `core._extract_type_parameter()` which return either `tp.__args__` value or `_NO_ARGS` constant
 * All "unsafe" usages of `tp.__args__` replaced with the new methods
 * Still fails with few tests on Python 3.6-3.8, no longer fails on Python 3.9+
@USSX-Hares USSX-Hares changed the title WIP: #341: Fixes for type-parameters without arguments #341: Fixes for type-parameters without arguments Mar 22, 2022
@UberMeatShield
Copy link

This seems like a pretty solid thing to get into the project so it is working in 3.10 as well :)

@lidatong
Copy link
Owner

Yes I'm sorry I've been MIA... I'll take a look soon!

@lidatong lidatong merged commit 04ae140 into lidatong:master Aug 14, 2022
@cprasad1
Copy link

@lidatong do you have plans to release a new version with this patch in? It will be great if we can get this bug fixed

@rucas
Copy link

rucas commented Mar 28, 2023

@lidatong any update on this? Would be great to have a new version released with these features.

renovate bot referenced this pull request in ixm-one/pytest-cmake-presets Jun 12, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [dataclasses-json](https://togithub.com/lidatong/dataclasses-json) |
`0.5.7` -> `0.5.8` |
[![age](https://badges.renovateapi.com/packages/pypi/dataclasses-json/0.5.8/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/pypi/dataclasses-json/0.5.8/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/pypi/dataclasses-json/0.5.8/compatibility-slim/0.5.7)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/pypi/dataclasses-json/0.5.8/confidence-slim/0.5.7)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>lidatong/dataclasses-json</summary>

###
[`v0.5.8`](https://togithub.com/lidatong/dataclasses-json/releases/tag/v0.5.8)

[Compare
Source](https://togithub.com/lidatong/dataclasses-json/compare/v0.5.7...v0.5.8)

#### What's Changed

-
[#&#8203;341](https://togithub.com/lidatong/dataclasses-json/issues/341):
Fixes for type-parameters without arguments by
[@&#8203;USSX-Hares](https://togithub.com/USSX-Hares) in
[https://github.com/lidatong/dataclasses-json/pull/346](https://togithub.com/lidatong/dataclasses-json/pull/346)
- ci: disable 3.6 by [@&#8203;lidatong](https://togithub.com/lidatong)
in
[https://github.com/lidatong/dataclasses-json/pull/400](https://togithub.com/lidatong/dataclasses-json/pull/400)
- ci: bump gh action by
[@&#8203;lidatong](https://togithub.com/lidatong) in
[https://github.com/lidatong/dataclasses-json/pull/403](https://togithub.com/lidatong/dataclasses-json/pull/403)
- Update usage of mypy.main in test following updates to mypy package by
[@&#8203;rpmcginty](https://togithub.com/rpmcginty) in
[https://github.com/lidatong/dataclasses-json/pull/374](https://togithub.com/lidatong/dataclasses-json/pull/374)
- Fixes recursive dict encoding by
[@&#8203;matt035343](https://togithub.com/matt035343) in
[https://github.com/lidatong/dataclasses-json/pull/394](https://togithub.com/lidatong/dataclasses-json/pull/394)
- Removes unused type variables in api.py by
[@&#8203;matt035343](https://togithub.com/matt035343) in
[https://github.com/lidatong/dataclasses-json/pull/415](https://togithub.com/lidatong/dataclasses-json/pull/415)
- Documentation: added example of global_config by
[@&#8203;nr23](https://togithub.com/nr23) in
[https://github.com/lidatong/dataclasses-json/pull/189](https://togithub.com/lidatong/dataclasses-json/pull/189)
- ci: add publish to gh action workflow by
[@&#8203;lidatong](https://togithub.com/lidatong) in
[https://github.com/lidatong/dataclasses-json/pull/421](https://togithub.com/lidatong/dataclasses-json/pull/421)

#### New Contributors

- [@&#8203;rpmcginty](https://togithub.com/rpmcginty) made their first
contribution in
[https://github.com/lidatong/dataclasses-json/pull/374](https://togithub.com/lidatong/dataclasses-json/pull/374)
- [@&#8203;matt035343](https://togithub.com/matt035343) made their first
contribution in
[https://github.com/lidatong/dataclasses-json/pull/394](https://togithub.com/lidatong/dataclasses-json/pull/394)
- [@&#8203;nr23](https://togithub.com/nr23) made their first
contribution in
[https://github.com/lidatong/dataclasses-json/pull/189](https://togithub.com/lidatong/dataclasses-json/pull/189)

**Full Changelog**:
lidatong/dataclasses-json@v0.5.7...v0.5.8

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/ixm-one/pytest-cmake-presets).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@USSX-Hares USSX-Hares deleted the bugs/341-no-params-typing branch August 3, 2023 15:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

typing module types without parameters broken when using Python 3.9
5 participants