Change by Bachsau :
--
nosy: -Bachsau
___
Python tracker
<https://bugs.python.org/issue34850>
___
___
Python-bugs-list mailing list
Unsubscribe:
Bachsau added the comment:
This is bullshit. SyntaxWarnings should be raised on problems with the *syntax*
not for ProgrammerMightBeDumb errors. There are a whole lot of things a
programmer not knowing the language could do wrong. But these are syntactically
valid expressions and it is not
New submission from Bachsau :
`del OSError().characters_written` raises `SystemError`:
"null argument to internal routine"
I don't know why anyone should try this in productive code, but since the
documentation says, that every `SystemError` should be reported, I'm doing
Change by Bachsau :
--
title: `del OSError().characters_written` raises SystemError -> `del
OSError().characters_written` raises `SystemError`
___
Python tracker
<https://bugs.python.org/issu
Bachsau added the comment:
Why is it using -1 instead of NULL as the "not-set-indicator"? -1 is a valid
python integer, that can be assigned, even if it doesn't make sense in the
context, while `None` can not, because it's missing a