# Chapter C 接下來閱讀什么?
> " Go forth on your path, as it exists only through your walking. "
> — St. Augustine of Hippo (attributed)
## 要閱讀的對象
鑒于一些主題有免費的教程,因此我決定不在本書中加以闡述。
修飾器:
* [函數修飾器](http://programmingbits.pythonblogs.com/27_programmingbits/archive/50_function_decorators.html) 作者: Ariel Ortiz
* [關于函數修飾器的更多討論](http://programmingbits.pythonblogs.com/27_programmingbits/archive/51_more_on_function_decorators.html) 作者: Ariel Ortiz
* [可愛的 Python:修飾器使魔法更輕松](http://www.ibm.com/developerworks/linux/library/l-cpdecor.html) 作者: David Mertz
* 官方 Python 文檔中的 [函數定義](http://docs.python.org/reference/compound_stmts.html#function)
屬性:
* [Python 內建 `屬性`](http://adam.gomaa.us/blog/2008/aug/11/the-python-property-builtin/) 作者: Adam Gomaa
* [Getters/Setters/Fuxors](http://tomayko.com/writings/getters-setters-fuxors) 作者: Ryan Tomayko
* 官方 Python 文檔中的 [`property()` 函數](http://docs.python.org/library/functions.html#property)
描述符:
* [描述符的 How-To 指南](http://users.rcn.com/python/download/Descriptor.htm) 作者: Raymond Hettinger
* [可愛的 Python: Python 的簡潔與累贅,第二部分](http://www.ibm.com/developerworks/linux/library/l-python-elegance-2.html) 作者: David Mertz
* [Python 描述符](http://www.informit.com/articles/printerfriendly.aspx?p=1309289) 作者: Mark Summerfield
* Python 官方文檔中的 [調用描述符](http://docs.python.org/3.1/reference/datamodel.html#invoking-descriptors)
線程 _&_ 多進程:
* [`threading` 模塊](http://docs.python.org/3.1/library/threading.html)
* [`線程`?—?管理并發線程](http://www.doughellmann.com/PyMOTW/threading/)
* [`multiprocessing` 模塊](http://docs.python.org/3.1/library/multiprocessing.html)
* [`多進程`?—?像管理線程那樣管理進程](http://www.doughellmann.com/PyMOTW/multiprocessing/)
* [Python 線程和全局解釋器鎖](http://jessenoller.com/2009/02/01/python-threads-and-the-global-interpreter-lock/) 作者: Jesse Noller
* [Python GIL 揭密(視頻)](http://blip.tv/file/2232410) 作者: David Beazley
元類
* [Python 中的元類編程](http://www.ibm.com/developerworks/linux/library/l-pymeta.html) 作者: David Mertz 和 Michele Simionato
* [Python 中的元類編程,第二部分](http://www.ibm.com/developerworks/linux/library/l-pymeta2/) 作者: David Mertz 和 Michele Simionato
* [Python 中的元類編程,第三部分](http://www.ibm.com/developerworks/linux/library/l-pymeta3.html) 作者: David Mertz 和 Michele Simionato
此外,Doug Hellman 之 [本周 Python 模塊](http://www.doughellmann.com/PyMOTW/contents.html) 是對Python 標準類庫模塊的極好指南
## 到哪里找與 Python 3-兼容的代碼
由于 Python 3 相對較新,其非常缺乏兼容類庫。以下地方可用于查找在 Python 3 之下能夠正常運作的代碼:
* [Python 安裝包索引:Python 3 安裝包清單](http://pypi.python.org/pypi?:action=browse&c=533&show=all)
* [Python 食譜:標記了 “python3”的內容清單](http://code.activestate.com/recipes/langs/python/tags/python3/)
* [以 Google 為宿主的項目:標記為 “python3”的項目清單](http://code.google.com/hosting/search?q=label:python3)
* [SourceForge: 符合 “Python 3”的項目清單](http://sourceforge.net/search/?words=%22python+3%22)
* [GitHub: 符合 “python3”的項目清單](http://github.com/search?type=Repositories&language=python&q=python3) (以及 [符合 “python 3”的項目清單](http://github.com/search?type=Repositories&language=python&q=python+3))
* [BitBucket: 符合 “python3”的項目清單](http://bitbucket.org/repo/all/?name=python3) (以及 [符合 “python 3”的項目清單](http://bitbucket.org/repo/all/?name=python+3))
- 版權信息
- Chapter -1 《深入 Python 3》中有何新內容
- Chapter 0 安裝 Python
- Chapter 1 你的第一個 Python 程序
- Chapter 2 內置數據類型
- Chapter 3 解析
- Chapter 4 字符串
- Chapter 5 正則表達式
- Chapter 6 閉合 與 生成器
- Chapter 7 類 & 迭代器
- Chapter 8 高級迭代器
- Chapter 9 單元測試
- Chapter 10 重構
- Chapter 11 文件
- Chapter 12 XML
- Chapter 13 序列化Python對象
- Chapter 14 HTTP Web 服務
- Chapter 15 案例研究:將chardet移植到Python 3
- Chapter 16 打包 Python 類庫
- Chapter A 使用2to3將代碼移植到Python 3
- Chapter B 特殊方法名稱
- Chapter C 接下來閱讀什么?