-
Notifications
You must be signed in to change notification settings - Fork 17
/
resources.html
78 lines (67 loc) · 3.11 KB
/
resources.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CPython Compilers</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="css/bootstrap-2.1.0.min.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
.sidebar-nav {
padding: 9px 0;
}
</style>
<link href="css/bootstrap-responsive-2.1.0.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet" href="style.css" type="text/css" />
<link rel="shortcut icon" href="img/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="img/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="img/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="img/ico/apple-touch-icon-57-precomposed.png">
</head>
<body>
<a href="https://github.com/pydata/compilers-webpage"><img style="position: fixed; top: 0; right: 0; border: 0; z-index: 1040" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="#">CPython</a>
<div class="nav-collapse">
<ul class="nav">
<li><a href="index.html">Packages</a></li>
<li><a href="research.html">Research</a></li>
<li class="active"><a href="resources.html">Resources</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<h1 id="resources">Resources</h1>
<ul>
<li>http://www.uthcode.com/pythondesign.html#python-internals</li>
<li>http://greentreesnakes.readthedocs.org/en/latest/nodes.html</li>
<li>http://wiki.python.org/moin/PythonImplementations</li>
<li>https://www.youtube.com/watch?v=XGF3Qu4dUqk</li>
<li>http://www.python.org/dev/peps/pep-0339/</li>
<li>http://tech.blog.aknin.name/2010/04/02/pythons-innards-introduction/</li>
<li>http://tech.blog.aknin.name/2010/09/02/pythons-innards-hello-ceval-c-2/</li>
<li>http://eli.thegreenplace.net/2009/11/28/python-internals-working-with-python-asts/</li>
<li>http://pyevolve.sourceforge.net/wordpress/?p=2353</li>
</ul>
</div>
<script type="text/javascript" src="js/lib/jquery-1.8.0.min.js"></script>
<script type="text/javascript" src="js/lib/bootstrap-2.1.0.min.js"></script>
</body>
</html>