mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Backporting since it would have helped us find a regression.
Merged revisions 75314 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r75314 | antoine.pitrou | 2009-10-10 23:08:31 +0200 (sam., 10 oct. 2009) | 10 lines Merged revisions 75312 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r75312 | antoine.pitrou | 2009-10-10 22:52:11 +0200 (sam., 10 oct. 2009) | 4 lines Issue #7055: test___all__ now greedily detects all modules which have an __all__ attribute, rather than using a hardcoded and incomplete list. ........ ................
This commit is contained in:
parent
3727600721
commit
56e00caad7
3 changed files with 83 additions and 128 deletions
|
@ -36,7 +36,7 @@ Note: 'r' and 'w' fail if the database doesn't exist; 'c' creates it
|
|||
only if it doesn't exist; and 'n' always creates a new database.
|
||||
"""
|
||||
|
||||
__all__ = ['open', 'whichdb', 'error', 'errors']
|
||||
__all__ = ['open', 'whichdb', 'error', 'error']
|
||||
|
||||
import io
|
||||
import os
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue