Skip to content

Commit

Permalink
deploy: 753243b
Browse files Browse the repository at this point in the history
  • Loading branch information
satori1995 committed Dec 10, 2024
1 parent 15bee82 commit db2d741
Show file tree
Hide file tree
Showing 28 changed files with 514 additions and 23 deletions.
2 changes: 1 addition & 1 deletion 0.序言.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@

<nav id="sidebar" class="sidebar" aria-label="Table of contents">
<div class="sidebar-scrollbox">
<ol class="chapter"><li class="chapter-item expanded "><a href="0.序言.html" class="active">0. 序言</a></li><li class="chapter-item expanded "><a href="1.CPython源码长什么样子?.html">1. CPython 源码长什么样子?</a></li><li class="chapter-item expanded "><a href="2.变量和对象,它们之间有什么区别和联系呢?.html">2. 变量和对象,它们之间有什么区别和联系呢?</a></li><li class="chapter-item expanded "><a href="3.Python对象有哪几种,我们可以从哪些角度进行分类呢?.html">3. Python 对象有哪几种,我们可以从哪些角度进行分类呢?</a></li><li class="chapter-item expanded "><a href="4.万丈高楼平地起,一切从PyObject开始.html">4. 万丈高楼平地起,一切从 PyObject 开始</a></li><li class="chapter-item expanded "><a href="5.详解PyTypeObject,Python类型对象的载体.html">5. 详解 PyTypeObject,Python 类型对象的载体</a></li><li class="chapter-item expanded "><a href="6.通过type和object之间的关联,进一步分析类型对象.html">6. 通过 type 和 object 之间的关联,进一步分析类型对象</a></li><li class="chapter-item expanded "><a href="7.当创建一个Python对象时,背后都经历了哪些过程?.html">7. 当创建一个 Python 对象时,背后都经历了哪些过程?</a></li><li class="chapter-item expanded "><a href="8.当调用一个Python对象时,背后都经历了哪些过程?.html">8. 当调用一个 Python 对象时,背后都经历了哪些过程?</a></li><li class="chapter-item expanded "><a href="9.再探泛型API,感受Python对象的设计哲学.html">9. 再探泛型 API,感受 Python 对象的设计哲学</a></li><li class="chapter-item expanded "><a href="10.Python对象的行为是怎么区分的?.html">10. Python 对象的行为是怎么区分的?</a></li><li class="chapter-item expanded "><a href="11.一个Python对象会在何时被销毁?.html">11. 一个 Python 对象会在何时被销毁?</a></li><li class="chapter-item expanded "><a href="12.深度解密Python的浮点数是怎么实现的?.html">12. 深度解密 Python 的浮点数是怎么实现的?</a></li><li class="chapter-item expanded "><a href="13.对象被销毁之后所占的内存一定会释放吗?解密浮点数的缓存池机制.html">13. 对象被销毁之后所占的内存一定会释放吗?解密浮点数的缓存池机制</a></li><li class="chapter-item expanded "><a href="14.浮点数支持的操作是怎么实现的?.html">14. 浮点数支持的操作是怎么实现的?</a></li><li class="chapter-item expanded "><a href="15.解密Python的复数是怎么实现的?它有什么用途呢?.html">15. 解密 Python 的复数是怎么实现的?它有什么用途呢?</a></li><li class="chapter-item expanded "><a href="16.Python的整数是怎么设计的,为什么它不会溢出?.html">16. Python 的整数是怎么设计的,为什么它不会溢出?</a></li><li class="chapter-item expanded "><a href="17.解密Python的小整数对象池.html">17. 解密 Python 的小整数对象池</a></li></ol>
<ol class="chapter"><li class="chapter-item expanded "><a href="0.序言.html" class="active">0. 序言</a></li><li class="chapter-item expanded "><a href="1.CPython源码长什么样子?.html">1. CPython 源码长什么样子?</a></li><li class="chapter-item expanded "><a href="2.变量和对象,它们之间有什么区别和联系呢?.html">2. 变量和对象,它们之间有什么区别和联系呢?</a></li><li class="chapter-item expanded "><a href="3.Python对象有哪几种,我们可以从哪些角度进行分类呢?.html">3. Python 对象有哪几种,我们可以从哪些角度进行分类呢?</a></li><li class="chapter-item expanded "><a href="4.万丈高楼平地起,一切从PyObject开始.html">4. 万丈高楼平地起,一切从 PyObject 开始</a></li><li class="chapter-item expanded "><a href="5.详解PyTypeObject,Python类型对象的载体.html">5. 详解 PyTypeObject,Python 类型对象的载体</a></li><li class="chapter-item expanded "><a href="6.通过type和object之间的关联,进一步分析类型对象.html">6. 通过 type 和 object 之间的关联,进一步分析类型对象</a></li><li class="chapter-item expanded "><a href="7.当创建一个Python对象时,背后都经历了哪些过程?.html">7. 当创建一个 Python 对象时,背后都经历了哪些过程?</a></li><li class="chapter-item expanded "><a href="8.当调用一个Python对象时,背后都经历了哪些过程?.html">8. 当调用一个 Python 对象时,背后都经历了哪些过程?</a></li><li class="chapter-item expanded "><a href="9.再探泛型API,感受Python对象的设计哲学.html">9. 再探泛型 API,感受 Python 对象的设计哲学</a></li><li class="chapter-item expanded "><a href="10.Python对象的行为是怎么区分的?.html">10. Python 对象的行为是怎么区分的?</a></li><li class="chapter-item expanded "><a href="11.一个Python对象会在何时被销毁?.html">11. 一个 Python 对象会在何时被销毁?</a></li><li class="chapter-item expanded "><a href="12.深度解密Python的浮点数是怎么实现的?.html">12. 深度解密 Python 的浮点数是怎么实现的?</a></li><li class="chapter-item expanded "><a href="13.对象被销毁之后所占的内存一定会释放吗?解密浮点数的缓存池机制.html">13. 对象被销毁之后所占的内存一定会释放吗?解密浮点数的缓存池机制</a></li><li class="chapter-item expanded "><a href="14.浮点数支持的操作是怎么实现的?.html">14. 浮点数支持的操作是怎么实现的?</a></li><li class="chapter-item expanded "><a href="15.解密Python的复数是怎么实现的?它有什么用途呢?.html">15. 解密 Python 的复数是怎么实现的?它有什么用途呢?</a></li><li class="chapter-item expanded "><a href="16.Python的整数是怎么设计的,为什么它不会溢出?.html">16. Python 的整数是怎么设计的,为什么它不会溢出?</a></li><li class="chapter-item expanded "><a href="17.解密Python的小整数对象池.html">17. 解密 Python 的小整数对象池</a></li><li class="chapter-item expanded "><a href="18.两个Python整数之间是如何进行大小比较的?过程并不像我们想的那样简单.html">18. 两个 Python 整数之间是如何进行大小比较的?过程并不像我们想的那样简单</a></li></ol>
</div>
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
</nav>
Expand Down
2 changes: 1 addition & 1 deletion 1.CPython源码长什么样子?.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@

<nav id="sidebar" class="sidebar" aria-label="Table of contents">
<div class="sidebar-scrollbox">
<ol class="chapter"><li class="chapter-item expanded "><a href="0.序言.html">0. 序言</a></li><li class="chapter-item expanded "><a href="1.CPython源码长什么样子?.html" class="active">1. CPython 源码长什么样子?</a></li><li class="chapter-item expanded "><a href="2.变量和对象,它们之间有什么区别和联系呢?.html">2. 变量和对象,它们之间有什么区别和联系呢?</a></li><li class="chapter-item expanded "><a href="3.Python对象有哪几种,我们可以从哪些角度进行分类呢?.html">3. Python 对象有哪几种,我们可以从哪些角度进行分类呢?</a></li><li class="chapter-item expanded "><a href="4.万丈高楼平地起,一切从PyObject开始.html">4. 万丈高楼平地起,一切从 PyObject 开始</a></li><li class="chapter-item expanded "><a href="5.详解PyTypeObject,Python类型对象的载体.html">5. 详解 PyTypeObject,Python 类型对象的载体</a></li><li class="chapter-item expanded "><a href="6.通过type和object之间的关联,进一步分析类型对象.html">6. 通过 type 和 object 之间的关联,进一步分析类型对象</a></li><li class="chapter-item expanded "><a href="7.当创建一个Python对象时,背后都经历了哪些过程?.html">7. 当创建一个 Python 对象时,背后都经历了哪些过程?</a></li><li class="chapter-item expanded "><a href="8.当调用一个Python对象时,背后都经历了哪些过程?.html">8. 当调用一个 Python 对象时,背后都经历了哪些过程?</a></li><li class="chapter-item expanded "><a href="9.再探泛型API,感受Python对象的设计哲学.html">9. 再探泛型 API,感受 Python 对象的设计哲学</a></li><li class="chapter-item expanded "><a href="10.Python对象的行为是怎么区分的?.html">10. Python 对象的行为是怎么区分的?</a></li><li class="chapter-item expanded "><a href="11.一个Python对象会在何时被销毁?.html">11. 一个 Python 对象会在何时被销毁?</a></li><li class="chapter-item expanded "><a href="12.深度解密Python的浮点数是怎么实现的?.html">12. 深度解密 Python 的浮点数是怎么实现的?</a></li><li class="chapter-item expanded "><a href="13.对象被销毁之后所占的内存一定会释放吗?解密浮点数的缓存池机制.html">13. 对象被销毁之后所占的内存一定会释放吗?解密浮点数的缓存池机制</a></li><li class="chapter-item expanded "><a href="14.浮点数支持的操作是怎么实现的?.html">14. 浮点数支持的操作是怎么实现的?</a></li><li class="chapter-item expanded "><a href="15.解密Python的复数是怎么实现的?它有什么用途呢?.html">15. 解密 Python 的复数是怎么实现的?它有什么用途呢?</a></li><li class="chapter-item expanded "><a href="16.Python的整数是怎么设计的,为什么它不会溢出?.html">16. Python 的整数是怎么设计的,为什么它不会溢出?</a></li><li class="chapter-item expanded "><a href="17.解密Python的小整数对象池.html">17. 解密 Python 的小整数对象池</a></li></ol>
<ol class="chapter"><li class="chapter-item expanded "><a href="0.序言.html">0. 序言</a></li><li class="chapter-item expanded "><a href="1.CPython源码长什么样子?.html" class="active">1. CPython 源码长什么样子?</a></li><li class="chapter-item expanded "><a href="2.变量和对象,它们之间有什么区别和联系呢?.html">2. 变量和对象,它们之间有什么区别和联系呢?</a></li><li class="chapter-item expanded "><a href="3.Python对象有哪几种,我们可以从哪些角度进行分类呢?.html">3. Python 对象有哪几种,我们可以从哪些角度进行分类呢?</a></li><li class="chapter-item expanded "><a href="4.万丈高楼平地起,一切从PyObject开始.html">4. 万丈高楼平地起,一切从 PyObject 开始</a></li><li class="chapter-item expanded "><a href="5.详解PyTypeObject,Python类型对象的载体.html">5. 详解 PyTypeObject,Python 类型对象的载体</a></li><li class="chapter-item expanded "><a href="6.通过type和object之间的关联,进一步分析类型对象.html">6. 通过 type 和 object 之间的关联,进一步分析类型对象</a></li><li class="chapter-item expanded "><a href="7.当创建一个Python对象时,背后都经历了哪些过程?.html">7. 当创建一个 Python 对象时,背后都经历了哪些过程?</a></li><li class="chapter-item expanded "><a href="8.当调用一个Python对象时,背后都经历了哪些过程?.html">8. 当调用一个 Python 对象时,背后都经历了哪些过程?</a></li><li class="chapter-item expanded "><a href="9.再探泛型API,感受Python对象的设计哲学.html">9. 再探泛型 API,感受 Python 对象的设计哲学</a></li><li class="chapter-item expanded "><a href="10.Python对象的行为是怎么区分的?.html">10. Python 对象的行为是怎么区分的?</a></li><li class="chapter-item expanded "><a href="11.一个Python对象会在何时被销毁?.html">11. 一个 Python 对象会在何时被销毁?</a></li><li class="chapter-item expanded "><a href="12.深度解密Python的浮点数是怎么实现的?.html">12. 深度解密 Python 的浮点数是怎么实现的?</a></li><li class="chapter-item expanded "><a href="13.对象被销毁之后所占的内存一定会释放吗?解密浮点数的缓存池机制.html">13. 对象被销毁之后所占的内存一定会释放吗?解密浮点数的缓存池机制</a></li><li class="chapter-item expanded "><a href="14.浮点数支持的操作是怎么实现的?.html">14. 浮点数支持的操作是怎么实现的?</a></li><li class="chapter-item expanded "><a href="15.解密Python的复数是怎么实现的?它有什么用途呢?.html">15. 解密 Python 的复数是怎么实现的?它有什么用途呢?</a></li><li class="chapter-item expanded "><a href="16.Python的整数是怎么设计的,为什么它不会溢出?.html">16. Python 的整数是怎么设计的,为什么它不会溢出?</a></li><li class="chapter-item expanded "><a href="17.解密Python的小整数对象池.html">17. 解密 Python 的小整数对象池</a></li><li class="chapter-item expanded "><a href="18.两个Python整数之间是如何进行大小比较的?过程并不像我们想的那样简单.html">18. 两个 Python 整数之间是如何进行大小比较的?过程并不像我们想的那样简单</a></li></ol>
</div>
<div id="sidebar-resize-handle" class="sidebar-resize-handle"></div>
</nav>
Expand Down
Loading

0 comments on commit db2d741

Please sign in to comment.