mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
fix spacing around switch statements
This commit is contained in:
parent
822c790527
commit
ead6b53659
1 changed files with 22 additions and 23 deletions
|
@ -887,8 +887,7 @@ unicode_kind_name(PyObject *unicode)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
assert(PyUnicode_IS_READY(unicode));
|
assert(PyUnicode_IS_READY(unicode));
|
||||||
switch(PyUnicode_KIND(unicode))
|
switch (PyUnicode_KIND(unicode)) {
|
||||||
{
|
|
||||||
case PyUnicode_1BYTE_KIND:
|
case PyUnicode_1BYTE_KIND:
|
||||||
if (PyUnicode_IS_ASCII(unicode))
|
if (PyUnicode_IS_ASCII(unicode))
|
||||||
return "ascii";
|
return "ascii";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue