Using multiple starred targets on the left side of `=` gets the error message saying "starred expressions" instead of "starred targets"
Ninguém assumiu esta issue ainda.
- Linguagem predominante
- Python
- Estrelas
- 77.2k
- Forks
- 36k
- Métricas de merge de PRs
- Métricas de PR pendentes
Descrição
Bug report
Bug description:
The doc says starred target as shown below:
*Memo:
- The doc also says
star_target.
If the target list contains one target prefixed with an asterisk, called a “starred” target:
But using multiple starred targets on the left side of = gets the error message saying starred expressions instead of starred targets as shown below:
*v1, *v2, *v3 = [0, 1, 2, 3, 4]
# Error
SyntaxError: multiple starred expressions in assignment
So, the error message should say starred targets as shown below:
SyntaxError: multiple starred targets in assignment
And, using a single starred target on the left side of = gets the error message saying starred assignment target as shown below:
*v = [0, 1, 2, 3, 4]
SyntaxError: starred assignment target must be in a list or tuple
So, the error message should say starred target as shown below:
SyntaxError: starred target must be in a list or tuple in assignment
CPython versions tested on:
3.12
Operating systems tested on:
Windows
Linked PRs
- gh-138283
Guia de contribuição
Primeiros passos
- Leia a issue inteira e depois o guia de contribuição do projeto.
- Comente na issue dizendo que vai assumir — evita que duas pessoas façam o mesmo trabalho.
- Faça um fork do repositório e trabalhe em uma branch.
- Abra um pull request que referencie o número da issue.
Direção de pesquisa
O issue não nomeia nenhum arquivo-fonte nem teste. Comece localizando o ponto de entrada do parser ou compilador do CPython que emite os dois assignment SyntaxErrors e, em seguida, revise o PR vinculado gh-138283; considera-se concluído quando as mensagens usam a formulação documentada “starred target” e o comportamento relevante está coberto por testes.
Escrita pelo modelo de indexação a partir do texto da issue.
Avaliação
- Stack de tecnologia
- python
- Domínio
- compilers
- Tipo de issue
- Bug
- Dificuldade
- 3/5
- Tempo estimado
- 1-2 dias
- Status de atividade
- Estagnada
- Clareza
- Claramente especificada
- Facilidade para iniciantes
- 25/100