Skip to content

Commit c98ba8e

Browse files
committed
Add develop branch.
1 parent 980a6b3 commit c98ba8e

File tree

5 files changed

+57
-0
lines changed

5 files changed

+57
-0
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,9 @@ Examples of reliable coding of Python 'C' extensions by Paul Ross.
55
The full documentation is on [Read the Docs](http://pythonextensionpatterns.readthedocs.org/en/latest/index.html).
66

77
Code examples and documentation source are right here on GitHub.
8+
9+
10+
## TODO
11+
12+
* Reorganinse source code.
13+
* More here...

doc/presentations/ReadMe.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Presentations about Python Extension Patterns
2+
3+
PyCon UK 2015: [https://www.youtube.com/watch?v=ViRIYqiU128](https://www.youtube.com/watch?v=ViRIYqiU128)
4+
5+
PyCon US 2016: [https://www.youtube.com/watch?v=Yq__HtUIH5Y](https://www.youtube.com/watch?v=Yq__HtUIH5Y)

doc/sphinx/source/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ This describes reliable patterns of coding Python Extensions in C. It covers the
2121
super_call
2222
compiler_flags
2323
debugging/debug
24+
memory_leaks
2425
thread_safety
2526
code_layout
2627
cpp

doc/sphinx/source/memory_leaks.rst

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.. highlight:: python
2+
:linenothreshold: 10
3+
4+
.. highlight:: c
5+
:linenothreshold: 10
6+
7+
.. toctree::
8+
:maxdepth: 3
9+
10+
11+
.. _memory_leaks-label:
12+
13+
===============================================
14+
Memory Leaks
15+
===============================================
16+
17+
Memory leaks.
18+
19+
.. note::
20+
21+
Some note.

requiriments.txt

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
alabaster==0.7.12
2+
Babel==2.8.0
3+
certifi==2020.6.20
4+
chardet==3.0.4
5+
docutils==0.16
6+
idna==2.10
7+
imagesize==1.2.0
8+
Jinja2==2.11.2
9+
MarkupSafe==1.1.1
10+
packaging==20.4
11+
Pygments==2.7.1
12+
pyparsing==2.4.7
13+
pytz==2020.1
14+
requests==2.24.0
15+
six==1.15.0
16+
snowballstemmer==2.0.0
17+
Sphinx==3.2.1
18+
sphinxcontrib-applehelp==1.0.2
19+
sphinxcontrib-devhelp==1.0.2
20+
sphinxcontrib-htmlhelp==1.0.3
21+
sphinxcontrib-jsmath==1.0.1
22+
sphinxcontrib-qthelp==1.0.3
23+
sphinxcontrib-serializinghtml==1.1.4
24+
urllib3==1.25.11

0 commit comments

Comments
 (0)