summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #318 from python-greenlet/gevent-1909Jason Madden2022-10-272-4/+7
|\ | | | | Save/restore the trash_delete_nesting; add tests for this.
| * Save/restore the trash_delete_nesting; add tests for this.Jason Madden2022-10-272-4/+7
| | | | | | | | Refs https://github.com/gevent/gevent/issues/1909
* | docs: Fix a few typosTim Gates2022-07-041-1/+1
|/ | | | | | | | | | | | There are small typos in: - docs/python_threads.rst - src/greenlet/greenlet.cpp - src/greenlet/greenlet_thread_state.hpp Fixes: - Should read `uncollectible` rather than `uncollectable`. - Should read `somehow` rather than `somewhow`. - Should read `communicate` rather than `commuticate`.
* Fix typosKian-Meng, Ang2021-11-171-1/+1
|
* Better detection of dead greenlets: Any greenlet from a dead thread is dead, ↵Jason Madden2021-11-091-7/+33
| | | | even the main greenlet.
* Fix typoguillaumep2021-01-091-1/+1
|
* Correct Context Vars PEP citationSebastian Koslowski2020-12-011-1/+1
|
* Tweak CHANGES.rst [skip ci]Jason Madden2020-11-201-1/+1
|
* Add document on caveats and known issues.Jason Madden2020-11-193-0/+43
| | | | Fixes #143.
* Add to the documentation on greenlet cycles leading to leaks.Jason Madden2020-11-191-7/+115
|
* More restructuring of the docs.docsJason Madden2020-11-199-460/+836
|
* More docs.Jason Madden2020-11-184-31/+187
|
* Better thread example.Jason Madden2020-11-181-8/+15
|
* More doctests.Jason Madden2020-11-181-3/+103
|
* Always complie with support for tracing, garbage collection and contextvars ↵issue207Jason Madden2020-11-181-2/+1
| | | | | | | | (where applicable). Remove undocumented compiler macros that let those things be switched off; they were never tested. Fixes #207
* Add basic development/release docs. [skip ci]Jason Madden2020-11-162-0/+32
|
* Fix docs typo.Jason Madden2020-11-141-2/+2
|
* Add proper cross-linkable API docs, and begin breaking the documentation ↵Jason Madden2020-11-137-467/+595
| | | | into topics.
* Fix highlighting of some doc snippets. [skip ci]Jason Madden2020-11-131-5/+5
|
* Convert most documenation examples to doctests and run them on CI and tox.Jason Madden2020-11-133-132/+294
| | | | Fixes #204
* Minor docs tweaks; add change note; whitespace in greenlet.Jason Madden2020-11-111-72/+79
|
* Raise AttributeError if contextvars not supported; remove support for 'del ↵Joshua Oreman2020-11-111-7/+17
| | | | gr.gr_context'
* Elaborate on docs; fix conditional compilationJoshua Oreman2020-11-111-13/+37
|
* Add the ability to modify a greenlet's contextvars contextJoshua Oreman2020-11-111-3/+76
|
* Fix quit in docs exampleNotWearingPants2020-11-111-0/+1
|
* Publish the change log on RTD.Jason Madden2020-09-306-0/+1052
Fixes #188 Some other minor modernizations as well: - use a RTD config file - Rename NEWS to CHANGES.rst as seems to be th current standard - Likewise, rename doc to docs and *.txt to *.rst (hooray syntax highlighting) - Partially require setuptools; we effectively did anyway. More work required here.