Skip to content

Commit 6c25ec2

Browse files
authored
Altgraph: revert our patches and use upstream.
Essentially this PR reverts upstream patches so that we can delete the altgraph files and use upstream.
2 parents f101f6f + 5cbf916 commit 6c25ec2

17 files changed

+18
-1719
lines changed

PyInstaller/depend/analysis.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -468,8 +468,8 @@ def importer_names(self, name):
468468
node = self.findNode(name)
469469
if node is None : return []
470470
_, iter_inc = self.get_edges(node)
471-
return [importer.identifier for importer in iter_inc]
472-
471+
return [importer.identifier for importer in iter_inc
472+
if importer is not None]
473473

474474
# TODO create class from this function.
475475
def analyze_runtime_hooks(self, custom_runhooks):

PyInstaller/lib/altgraph/Dot.py

-299
This file was deleted.

0 commit comments

Comments
 (0)