My question is very straight forward: Is smtplib pure python or implemented in C?
|
feedback
|
|
smtplib itself is implemented in python but socket is based on C, so its means both. | |||||
feedback
|
Therefore, smtplib is written in python. | |||||||||||||||||||||
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. | |||
feedback
|