Skip to content

Commit eb508f1

Browse files
authored
Update TOC on index page, make headers uniform (#109)
1 parent eea337e commit eb508f1

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

docs/debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Uncovering concurrency issues, testing and debugging
1+
# Uncovering Concurrency Issues, Testing and Debugging
22

33
Until now, the GIL has allowed developers to ignore C
44
safety issues when writing parallel programs, since the GIL ensured that

docs/index.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,18 @@ maintainers and end users interested in supporting or experimenting with
1616
free-threaded Python. An overview of the compatibility status of various Python
1717
libraries is maintained in:
1818

19-
- [Compatibility status tracking](tracking.md)
19+
- [Compatibility Status Tracking](tracking.md)
2020

2121
This website also provide documentation and porting guidance - with a focus on
2222
extension modules using the Python C API, because that's where most of the work
2323
will be. The following resources should get you started:
2424

25-
- [Installing free-threaded CPython](installing_cpython.md)
26-
- [Running Python with the GIL disabled](running-gil-disabled.md)
27-
- [Porting extension modules to support free-threading](porting.md)
25+
- [Installing Free-Threaded Python](installing_cpython.md)
26+
- [Running Python with the GIL Disabled](running-gil-disabled.md)
27+
- [Porting Python Packages to Support Free-Threading](porting.md)
2828
- [Setting up CI](ci.md)
29-
- [Finding, testing and debugging concurrency issues](debugging.md)
29+
- [Uncovering Concurrency Issues, Testing and Debugging](debugging.md)
30+
- [More Resources](resources.md)
3031

3132
## About this site
3233

docs/installing_cpython.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Installing a free-threaded Python
1+
# Installing Free-Threaded Python
22

33
To install a free-threaded CPython interpreter, you can either use a pre-built
44
binary or build CPython from source. The former is quickest to get started

docs/resources.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# More resources
1+
# More Resources
22

33
Apart from this website, there's a wide list of resources on the
44
free-threaded build and free-threading topics in general, including

docs/running-gil-disabled.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Running with the GIL disabled
1+
# Running Python with the GIL Disabled
22

33
!!! info
44
Most of the content on this page is also covered in the Python 3.13

docs/tracking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Compatibility status tracking
1+
# Compatibility Status Tracking
22

33
This page tracks the status of packages for which we're aware of active work on
44
free-threaded support. It contains packages with extension modules, as well

0 commit comments

Comments
 (0)