_sha import in python hashlib
问题 Well, today I was checking the hashlib module in python, but then I found something that I still can't figure out. Inside this python module, there is an import that I can't follow. I goes like this: def __get_builtin_constructor(name): if name in ('SHA1', 'sha1'): import _sha return _sha.new I tried to import the _sha module from a python shell, but is seems that it cannot be reached that way.My first guess is that it's a C module, but I'm not sure. So tell me guys, do you know where is that