diff options
author | Ross Burton <ross.burton@intel.com> | 2016-03-08 17:03:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-12 22:11:20 +0000 |
commit | 48bc643a4ebe74d0fa49fedbe7b0fd63fd0003e8 (patch) | |
tree | 77a37f8e7cb0d8eff4798944eb91c2aee803e525 /scripts/contrib | |
parent | 2312eb1b6da67c2c7e8c968db55d99472ac29b49 (diff) | |
download | openembedded-core-48bc643a4ebe74d0fa49fedbe7b0fd63fd0003e8.tar.gz openembedded-core-48bc643a4ebe74d0fa49fedbe7b0fd63fd0003e8.tar.bz2 openembedded-core-48bc643a4ebe74d0fa49fedbe7b0fd63fd0003e8.zip |
python: move ast module into python-core
The compile() method returns objects that inherit from ast.AST so it's best that
python-core contains this class.
[YOCTO #8684]
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/contrib')
-rwxr-xr-x | scripts/contrib/python/generate-manifest-2.7.py | 2 | ||||
-rwxr-xr-x | scripts/contrib/python/generate-manifest-3.5.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/contrib/python/generate-manifest-2.7.py b/scripts/contrib/python/generate-manifest-2.7.py index 14162c6f60..d93c943c61 100755 --- a/scripts/contrib/python/generate-manifest-2.7.py +++ b/scripts/contrib/python/generate-manifest-2.7.py @@ -164,7 +164,7 @@ if __name__ == "__main__": # m.addPackage( "${PN}-core", "Python interpreter and core modules", "${PN}-lang ${PN}-re", - "__future__.* _abcoll.* abc.* copy.* copy_reg.* ConfigParser.* " + + "__future__.* _abcoll.* abc.* ast.* copy.* copy_reg.* ConfigParser.* " + "genericpath.* getopt.* linecache.* new.* " + "os.* posixpath.* struct.* " + "warnings.* site.* stat.* " + diff --git a/scripts/contrib/python/generate-manifest-3.5.py b/scripts/contrib/python/generate-manifest-3.5.py index 20ceabc698..367b4b8b4b 100755 --- a/scripts/contrib/python/generate-manifest-3.5.py +++ b/scripts/contrib/python/generate-manifest-3.5.py @@ -167,7 +167,7 @@ if __name__ == "__main__": # m.addPackage( "${PN}-core", "Python interpreter and core modules", "${PN}-lang ${PN}-re ${PN}-reprlib ${PN}-codecs ${PN}-io ${PN}-math", - "__future__.* _abcoll.* abc.* copy.* copyreg.* ConfigParser.* " + + "__future__.* _abcoll.* abc.* ast.* copy.* copyreg.* ConfigParser.* " + "genericpath.* getopt.* linecache.* new.* " + "os.* posixpath.* struct.* " + "warnings.* site.* stat.* " + |