John
John

Reputation: 123

Is this Python Module in Windows?

Are the following packages part of the standard installation of Python 2.7?

import common
import settings
import xpath

Upvotes: 0

Views: 85

Answers (2)

root
root

Reputation: 80346

No, these are not, check the python 2.7 docs

EDIT: xpath could be the one here. It's hard to answer exactly without knowing the context, but i have no knowledge of common modules/packages named settings / common.

Upvotes: 3

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798646

No, those modules are not found in the stdlib.

Upvotes: 0

Related Questions