Merge Python 3.5.3rc1 release changes back into the main branch.
This commit is contained in:
commit
31f9d9d340
|
@ -765,9 +765,9 @@ Custom classes
|
|||
Special attributes: :attr:`~definition.__name__` is the class name; :attr:`__module__` is
|
||||
the module name in which the class was defined; :attr:`~object.__dict__` is the
|
||||
dictionary containing the class's namespace; :attr:`~class.__bases__` is a
|
||||
tuple (possibly a singleton) containing the base classes, in the
|
||||
order of their occurrence in the base class list; :attr:`__doc__` is the
|
||||
class's documentation string, or ``None`` if undefined.
|
||||
tuple containing the base classes, in the order of their occurrence in the
|
||||
base class list; :attr:`__doc__` is the class's documentation string, or
|
||||
``None`` if undefined.
|
||||
|
||||
Class instances
|
||||
.. index::
|
||||
|
|
|
@ -1416,7 +1416,6 @@ def getframeinfo(frame, context=1):
|
|||
except OSError:
|
||||
lines = index = None
|
||||
else:
|
||||
start = max(start, 0)
|
||||
start = max(0, min(start, len(lines) - context))
|
||||
lines = lines[start:start+context]
|
||||
index = lineno - 1 - start
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
<key>CFBundleExecutable</key>
|
||||
<string>IDLE</string>
|
||||
<key>CFBundleGetInfoString</key>
|
||||
<string>%version%, © 2001-2016 Python Software Foundation</string>
|
||||
<string>%version%, © 2001-2017 Python Software Foundation</string>
|
||||
<key>CFBundleIconFile</key>
|
||||
<string>IDLE.icns</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
|
|
Loading…
Reference in New Issue