mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
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] (From OE-Core rev: 48bc643a4ebe74d0fa49fedbe7b0fd63fd0003e8) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
1a35166107
commit
9e69963f11
@@ -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.* " +
|
||||
|
||||
@@ -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.* " +
|
||||
|
||||
Reference in New Issue
Block a user