mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Fix indentation of case and a Py_ssize_t issue.
This commit is contained in:
parent
7659f0fc26
commit
2585ad58e6
1 changed files with 2 additions and 2 deletions
|
@ -3665,7 +3665,7 @@ compiler_augassign(struct compiler *c, stmt_ty s)
|
|||
assert(s->kind == AugAssign_kind);
|
||||
|
||||
switch (e->kind) {
|
||||
case Attribute_kind:
|
||||
case Attribute_kind:
|
||||
auge = Attribute(e->v.Attribute.value, e->v.Attribute.attr,
|
||||
AugLoad, e->lineno, e->col_offset, c->c_arena);
|
||||
if (auge == NULL)
|
||||
|
@ -4195,7 +4195,7 @@ static int
|
|||
assemble_emit(struct assembler *a, struct instr *i)
|
||||
{
|
||||
int size, arg = 0, ext = 0;
|
||||
int len = PyString_GET_SIZE(a->a_bytecode);
|
||||
Py_ssize_t len = PyString_GET_SIZE(a->a_bytecode);
|
||||
char *code;
|
||||
|
||||
size = instrsize(i);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue