Merge ~hectorcao/ubuntu/+source/crmsh:lp2139102 into ubuntu/+source/crmsh:ubuntu/devel
Proposed by
Hector CAO
| Status: | Merged |
|---|---|
| Merged at revision: | f8f1bb5a2a2199a7fe4908adbc900f5d3c3f8f4f |
| Proposed branch: | ~hectorcao/ubuntu/+source/crmsh:lp2139102 |
| Merge into: | ubuntu/+source/crmsh:ubuntu/devel |
| Diff against target: |
78 lines (+56/-0) 3 files modified
debian/changelog (+7/-0) debian/patches/0028-minieval.py-Use-ast.Constant-instead-of-ast.Num.patch (+48/-0) debian/patches/series (+1/-0) |
| Related bugs: |
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Christian Ehrhardt (community) | Approve | ||
| git-ubuntu import | Pending | ||
|
Review via email:
|
|||
To post a comment you must log in.

- please report upstream and refer to it in dep3 headers
- please fix this for Str and Num, use the pattern they already established for Constant when handling potentially existing elements
Something like
Remove the two lines about Num and Str
# py3.14 completely dropped ast.Num and ast.Str - https:/ /docs.python. org/3/whatsnew/ 3.14.html# id9
self. nodes[ast. Num] = self._eval_num
self. nodes[ast. Str] = self._eval_str
if hasattr(ast, 'Num'):
if hasattr(ast, 'Str'):
- commit message "changelog" could be nicer, maybe "changelog for 5.0.0-2ubuntu2"