[issue14003] __self__ on built-in functions is not as documented

2012-02-13 Thread Роман Донченко
New submission from Роман Донченко : The language reference says this in section 3.2: ~ Built-in functions A built-in function object is a wrapper around a C function. Examples of built-in functions are len() and math.sin() <...> Special read-only attributes: <...> __self__ is

[issue14023] bytes implied to be mutable

2012-02-15 Thread Роман Донченко
New submission from Роман Донченко : The language reference in section 5.2.2 states: ~ With the exception of bytes literals, these all correspond to immutable data types, <...> ~ But bytes objects are immutable as well. -- assignee: docs@python components: Documentation me