Hi there! =)
My name is Volodya. I'm from Ukraine.
I'm learning now python courses (unittest), and if I'm not mistake -
I found a small UI bug with low priority)))
Info - in attach.
Please, fix it =)
Have a nice day! ;)
Pablo Galindo Salgado <pablogsal(a)gmail.com> added the comment:
New changeset 6680f4a9f5d15ab82b2ab6266c6f917cb78c919a by Pablo Galindo (Batuhan Taşkaya) in branch 'master':
bpo-3530: Add advice on when to correctly use fix_missing_locations in the AST docs (GH-17172)
https://github.com/python/cpython/commit/6680f4a9f5d15ab82b2ab6266c6f917cb7…
----------
nosy: +pablogsal
_______________________________________
Python tracker <report(a)bugs.python.org>
<https://bugs.python.org/issue3530>
_______________________________________
New submission from anatoly techtonik:
http://docs.python.org/2/library/ast.html
AST module doc is incomplete. To write node visitor, you need to know possible types of parameters and expected values for every node type. They are different.
http://hg.python.org/cpython/file/1ee45eb6aab9/Parser/Python.asdl
For example, visit_Assign expects:
Assign(targets, value)
`targets` can be List, Tuple or Name
When there is List, and when there is Tuple? It should be documented.
----------
assignee: docs@python
components: Devguide, Documentation
messages: 202675
nosy: docs@python, ezio.melotti, techtonik
priority: normal
severity: normal
status: open
title: ast - docs for every node type are missing
_______________________________________
Python tracker <report(a)bugs.python.org>
<http://bugs.python.org/issue19557>
_______________________________________
Vinay Sajip <vinay_sajip(a)yahoo.co.uk> added the comment:
New changeset eb9ba2f66df2195a9c6295e73ab3d545a1445f05 by Vinay Sajip (Miss Islington (bot)) in branch '3.8':
bpo-16575: Disabled checks for union types being passed by value. (GH-17960) (GH-17964)
https://github.com/python/cpython/commit/eb9ba2f66df2195a9c6295e73ab3d545a1…
----------
_______________________________________
Python tracker <report(a)bugs.python.org>
<https://bugs.python.org/issue16575>
_______________________________________
New submission from Mark Dickinson <dickinsm(a)gmail.com>:
The glossary entry for parameter[1] says:
> Python has no syntax for defining positional-only parameters.
Since PEP 570 landed in Python 3.8, that's no longer true.
[1] https://docs.python.org/3/glossary.html#term-parameter
----------
assignee: docs@python
components: Documentation
messages: 359451
nosy: docs@python, mark.dickinson
priority: normal
severity: normal
status: open
title: glossary entry for parameter out-of-date for positional-only parameters
versions: Python 3.8, Python 3.9
_______________________________________
Python tracker <report(a)bugs.python.org>
<https://bugs.python.org/issue39233>
_______________________________________