Home | History | Annotate | Download | only in distutils

Lines Matching refs:pkgs

784         pkgs = self.command_packages
785 if not isinstance(pkgs, list):
786 if pkgs is None:
787 pkgs = ''
788 pkgs = [pkg.strip() for pkg in pkgs.split(',') if pkg != '']
789 if "distutils.command" not in pkgs:
790 pkgs.insert(0, "distutils.command")
791 self.command_packages = pkgs
792 return pkgs