Bug 1632550
| Summary: | Importing btrfs on python3 fails | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Ed Marshall <esm> |
| Component: | python-btrfs | Assignee: | Juan Orti <jorti> |
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 29 | CC: | jorti |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | python-btrfs-9.1-1.fc29 | Doc Type: | If docs needed, set a value |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2018-10-31 16:40:42 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
I just checked upstream, and this has been reported there; it's new as of Python 3.7: https://github.com/knorrie/python-btrfs/issues/13 python-btrfs-8-6.fc29 has been submitted as an update to Fedora 29. https://bodhi.fedoraproject.org/updates/FEDORA-2018-4229c37d88 python-btrfs-8-6.fc29 has been pushed to the Fedora 29 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2018-4229c37d88 python-btrfs-9.1-1.fc29 has been submitted as an update to Fedora 29. https://bodhi.fedoraproject.org/updates/FEDORA-2018-805b5852c0 python-btrfs-9.1-1.fc29 has been pushed to the Fedora 29 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2018-805b5852c0 python-btrfs-9.1-1.fc29 has been pushed to the Fedora 29 stable repository. If problems still persist, please make note of it in this bug report. |
Description of problem: Importing btrfs from the python3-btrfs package fails immediately upon import with an exception. Version-Release number of selected component (if applicable): python3-btrfs-8-5.fc29.noarch How reproducible: Every time. Steps to Reproduce: Just import it. btrfs-heatmap uses the python3 version, if you want an example of something in the distribution that fails as a result of this. Actual results: $ python3 Python 3.7.0 (default, Aug 30 2018, 14:32:33) [GCC 8.2.1 20180801 (Red Hat 8.2.1-2)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import btrfs Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python3.7/site-packages/btrfs/__init__.py", line 23, in <module> from btrfs.ctree import FileSystem # noqa File "/usr/lib/python3.7/site-packages/btrfs/ctree.py", line 352, in <module> import btrfs.ioctl # noqa File "/usr/lib/python3.7/site-packages/btrfs/ioctl.py", line 215, in <module> ioctl_search_key.format.decode(), 4096 - ioctl_search_key.size)) AttributeError: 'str' object has no attribute 'decode' Expected results: No errors.