My question is very straight forward: Is smtplib pure python or implemented in C?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

smtplib itself is implemented in python but socket is based on C, so its means both.

link|improve this answer
1  
Thanks Mark! That's what I was looking for. – Viet Nov 26 '09 at 2:45
feedback
In [32]: import smtplib

In [33]: smtplib
Out[33]: <module 'smtplib' from '/usr/lib/python2.6/smtplib.pyc'>

Therefore, smtplib is written in python.

link|improve this answer
1  
+1 for showing how to find the answer, not just giving it. – Kiv Nov 26 '09 at 2:47
1  
+1 Hi ~unutbu! That's a neat way to investigate :D Thanks for the trick! – Viet Nov 26 '09 at 2:47
3  
Not to be picky, but this wouldn't detect if smtplib is using a helper module (as part of the library) that is a native. – notnoop Nov 26 '09 at 3:11
3  
@notnoop: That's true, but since every Python implementation (other than PyPy) is written in another language, every module depends on something which is non-Python if you dig deep enough. Therefore I interpreted the question to mean, "Is the module itself written in Python?" – unutbu Nov 26 '09 at 3:24
1  
Well, there are a few modules whose Python module part is but a slim wrapper with a extra functions over the main implementation part from a _module C implementation. – bobince Nov 26 '09 at 12:11
show 1 more comment
feedback

Basically pure Python (as the underlying implementation if you go down far enough is C). You can find the source under the Lib\ directory in your Python root.

link|improve this answer
thanks Wayne! I gave both answers +1 and thank you very much for participation. Since Mark arrived first, I give him the green mark. Thank you very much! – Viet Nov 26 '09 at 2:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.