diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-04-02 21:18:34 +0000 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-04-02 21:18:34 +0000 |
commit | 789be0c0a0656d17f831aa781cf7c5d55e5b4835 (patch) | |
tree | 8ce796bd726fcbbb4c9f19ae2d3601517ebbee91 /Doc/tutorial | |
parent | 48e3fd240fc6338fbcbbc9c1c8a7d118faca924a (diff) | |
download | cpython-git-789be0c0a0656d17f831aa781cf7c5d55e5b4835.tar.gz |
Issue #2396: backport the memoryview object.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/modules.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index f147cea493..c1ff982b4d 100644 --- a/Doc/tutorial/modules.rst +++ b/Doc/tutorial/modules.rst @@ -328,8 +328,8 @@ want a list of those, they are defined in the standard module 'enumerate', 'eval', 'execfile', 'exit', 'file', 'filter', 'float', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'intern', 'isinstance', 'issubclass', 'iter', - 'len', 'license', 'list', 'locals', 'long', 'map', 'max', 'min', - 'object', 'oct', 'open', 'ord', 'pow', 'property', 'quit', 'range', + 'len', 'license', 'list', 'locals', 'long', 'map', 'max', 'memoryview', + 'min', 'object', 'oct', 'open', 'ord', 'pow', 'property', 'quit', 'range', 'raw_input', 'reduce', 'reload', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'unichr', 'unicode', 'vars', 'xrange', 'zip'] |