-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
216 lines (124 loc) · 4.58 KB
/
index.html
File metadata and controls
216 lines (124 loc) · 4.58 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Lambda</title>
<meta name="author" content="Huang Jin">
<meta id="viewport" name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta property="og:site_name" content="Lambda"/>
<meta property="og:image" content="/favicon.ico"/>
<link href="/favicon.ico" rel="icon">
<link rel="alternate" href="/atom.xml" title="Lambda" type="application/atom+xml">
<link rel="stylesheet" href="/css/style.css" media="screen" type="text/css">
</head>
<body>
<div class="blog">
<div class="content">
<header>
<div class="site-branding">
<h1 class="site-title">
<a href="/">Lambda</a>
</h1>
<p class="site-description"></p>
</div>
<nav class="site-navigation">
<ul>
<li><a href="/">主页</a></li>
<li><a href="/archives">归档</a></li>
<li><a href="/categories">分类</a></li>
<li><a href="/tags">标签</a></li>
</ul>
</nav>
</header>
<main class="site-main posts-loop">
<article>
<h3 class="article-title"><a href="/2017/08/07/python3-6源码之对象/"><span>python3.6源码之对象</span></a></h3>
<div class="article-top-meta">
<span class="posted-on">
<a href="/2017/08/07/python3-6源码之对象/" rel="bookmark">
<time class="entry-date published" datetime="2017-08-07T06:55:21.000Z">
2017-08-07
</time>
</a>
</span>
</div>
<div class="article-content">
<div class="entry">
<h2 id="从对象说起"><a href="#从对象说起" class="headerlink" title="从对象说起"></a>从对象说起</h2><p>Python中万物皆是对象,只有理解了对象,我们才能算是真正理解Python。对象也是决定Python运行机制的关键。<br>由于Python最初是由C语言实现的,而C语言又是一种面向过程的语言,那么Python的对象又是怎么由面向过程的C语言实现的呢?<br>带着这些疑问,我们将逐步揭开Python语言对象的面纱。<br>
</div>
</div>
<div class="article-footer">
<div class="article-meta pull-left">
<span class="post-categories">
<i class="icon-categories"></i>
<a href="/categories/python/">python</a>
</span>
<span class="post-tags">
<i class="icon-tags"></i>
<a href="/tags/python3-6源码/">python3.6源码</a>
</span>
</div>
<div class="article-meta pull-right">
<span>
<i class="icon-comments"></i>
<span>
<a href="/2017/08/07/python3-6源码之对象/#comment">评论</a>
</span>
</span>
</div>
</div>
</article>
<article>
<h3 class="article-title"><a href="/2017/07/24/hello-world/"><span>Hexo简单上手</span></a></h3>
<div class="article-top-meta">
<span class="posted-on">
<a href="/2017/07/24/hello-world/" rel="bookmark">
<time class="entry-date published" datetime="2017-07-24T13:57:04.000Z">
2017-07-24
</time>
</a>
</span>
</div>
<div class="article-content">
<div class="entry">
<p>我的第一篇文章<br>
</div>
</div>
<div class="article-footer">
<div class="article-meta pull-left">
</div>
<div class="article-meta pull-right">
<span>
<i class="icon-comments"></i>
<span>
<a href="/2017/07/24/hello-world/#comment">评论</a>
</span>
</span>
</div>
</div>
</article>
<nav class="pagination">
</nav>
</main>
<footer class="site-footer">
<p class="site-info">
Proudly powered by <a href="https://hexo.io/" target="_blank">Hexo</a> and
Theme by <a href="https://github.com/CodeDaraW/Hacker" target="_blank">Hacker</a>
</br>
© 2017 Huang Jin
</p>
</footer>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-104062557-1', 'auto');
ga('send', 'pageview');
</script>
</div>
</div>
</body>
</html>