New submission from Christopher the Magnificent:
On OS X 10.9.1
This works:
Python 2.7.5 (default, Aug 25 2013, 00:04:04)
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin
Type "help", "copyright", "credits" or "license" for more in
New submission from Christopher the Magnificent:
The output below is NOT typed at the Python interactive interpeter. The ">>> "
shows what is being evaluated and the line below it shows what the result it.
The output gets generated here: (lines 418-449 of the atta
Christopher the Magnificent added the comment:
As Darren Dale pointed out, it looks like this is a (partial) documentation
issue. I think it's plausible that someone like me, who has used
abstractmethod by itself, would read the docs for abstractclassmethod and not
re-read the do
New submission from Christopher the Magnificent:
This is really short, you should spot the inconsistency in the result of the
same function call fairly easily.
Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 01:25:11)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "
New submission from Christopher the Magnificent:
This may be an issue with the interpreter behavior or it may be a documentation
issue.
Note: I only selected Python 3.3 as the version, but it probably affects MANY
other Python versions.
Python 3.3.0 (v3.3.0:bd8afb90ebf2, Sep 29 2012, 01:25
Christopher the Magnificent added the comment:
ISSUE CONFIRMED FIXED ON MY END, AND MANY THANKS
I downloaded, compiled, and installed the latest Python 3.3 beta on my machine
with Mercurial, and can confirm that the problem is no longer presenting itself.
Thank you and great job to you smart
Changes by Christopher the Magnificent :
--
title: "pydoc -w " write out page with empty "package contents"
section -> "pydoc -w " writes out page with empty "package contents"
section
___
Python
Changes by Christopher the Magnificent :
--
title: "pydoc -w " writes out page with empty "package contents"
section -> "pydoc -w " writes out page with empty "Package Contents"
section
___
Python
New submission from Christopher the Magnificent
:
Let there be a folder "testpkg" contained in $SOME_DIR with three empty files:
"__init__.py", "bob.py", and "sally.py
If I run "pydoc3.2 -w testpkg" inside $SOME_DIR, it will output the file
$SOME
New submission from Christopher the Magnificent
:
observe help(type) and type.__doc__ in Python 3.1:
>>> help(type)
Help on class type in module builtins:
class type(object)
| type(object) -> the object's type
| type(name, bases, dict) -> a new type
|
|
New submission from Christopher the Magnificent
:
Help for list looks like this:
>>> help(list)
class list(object)
| list() -> new list
| list(sequence) -> new list initialized from sequence's items
|
Help for dict looks like this
11 matches
Mail list logo