Start CPy section, add "The structure of .pyc files"

Paul Sokolovsky
2014-01-28 07:50:43 -08:00
parent f6ac9b14a4
commit ee0b458f19

@@ -4,3 +4,8 @@ MicroPython uses [string interning](http://en.wikipedia.org/wiki/String_internin
MicroPython uses [Open addressing](http://en.wikipedia.org/wiki/Open_addressing) with [Linear probing](http://en.wikipedia.org/wiki/Linear_probing) of step = 1 for implementation of dictionaries. Rehashing happens when last free slot is used (on reaching loadfactor = 1.0).
# CPython internals
(For reference and comparison.)
* [The structure of .pyc files](http://nedbatchelder.com/blog/200804/the_structure_of_pyc_files.html)