Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

GH-107803: double linked list implementation for asyncio tasks#107804

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
willingc merged 35 commits intopython:mainfromkumaraditya303:linked-list
Jun 22, 2024
Merged
Changes from1 commit
Commits
Show all changes
35 commits
Select commitHold shift + click to select a range
cc66eeb
linked list
kumaraditya303May 24, 2023
d5a3d87
add tail optmiization to linked list
kumaraditya303May 26, 2023
a0c5fcf
wip
kumaraditya303May 26, 2023
77d012f
wip
kumaraditya303May 28, 2023
5d9653d
wip
kumaraditya303May 28, 2023
5a00198
Merge branch 'main' of https://github.com/python/cpython into linked-…
kumaraditya303Jun 16, 2023
4cdc834
Merge branch 'main' of https://github.com/python/cpython into linked-…
kumaraditya303Aug 2, 2023
35a00f1
more fixes
kumaraditya303Aug 2, 2023
fddb9d6
Merge branch 'main' of https://github.com/python/cpython into linked-…
kumaraditya303Aug 5, 2023
1d32835
finally it works
kumaraditya303Aug 5, 2023
b46bcfe
Merge branch 'main' of https://github.com/python/cpython into linked-…
kumaraditya303Aug 8, 2023
ee7ead2
Merge branch 'main' of https://github.com/python/cpython into linked-…
kumaraditya303Aug 9, 2023
af0280a
add tests
kumaraditya303Aug 9, 2023
999fff7
remove weakreflist
kumaraditya303Aug 10, 2023
87a2231
add some comments
kumaraditya303Aug 10, 2023
1812408
Merge branch 'main' of https://github.com/python/cpython into linked-…
kumaraditya303Aug 12, 2023
3cb5673
Merge branch 'main' of https://github.com/python/cpython into linked-…
kumaraditya303Aug 15, 2023
9552636
reduce code duplication in _asynciomodule.c
kumaraditya303Aug 15, 2023
5c5b559
address some review comments
kumaraditya303Aug 17, 2023
82cf69b
add invariants about the state of the linked list
kumaraditya303Aug 17, 2023
8998f6a
add better explanation
kumaraditya303Aug 17, 2023
d93c4e1
clinic regen
kumaraditya303Aug 17, 2023
35726d9
reorder branches for better branch prediction
kumaraditya303Aug 17, 2023
8dd0492
Update Modules/_asynciomodule.c
kumaraditya303Aug 18, 2023
8325302
Apply suggestions from code review
kumaraditya303Aug 19, 2023
80b65e0
fix capturing of eager tasks
kumaraditya303Aug 19, 2023
b67649e
add comment to task finalization
kumaraditya303Aug 20, 2023
1252b2f
Merge branch 'main' of https://github.com/python/cpython into linked-…
kumaraditya303Aug 20, 2023
457739a
Merge branch 'main' into linked-list
kumaraditya303Aug 20, 2023
4670731
Merge branch 'main' of https://github.com/python/cpython into linked-…
kumaraditya303Aug 24, 2023
e061081
fix tests and couple c implmentation to c task
kumaraditya303Aug 24, 2023
836d254
Merge branch 'main' of https://github.com/python/cpython into linked-…
kumaraditya303Aug 30, 2023
efce4b3
fix test
kumaraditya303Aug 30, 2023
c7b604c
Merge branch 'main' of https://github.com/python/cpython into linked-…
kumaraditya303Jun 21, 2024
56beb04
Merge branch 'main' of https://github.com/python/cpython into linked-…
kumaraditya303Jun 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
fix test
  • Loading branch information
@kumaraditya303
kumaraditya303 committedAug 30, 2023
commitefce4b30a08c20c7a2c46354e541089c8d35fa29
2 changes: 1 addition & 1 deletionLib/test/test_asyncio/test_tasks.py
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2668,7 +2668,7 @@ class CTaskSubclass_PyFuture_Tests(BaseTaskTests, test_utils.TestCase):

Task = getattr(tasks, '_CTask', None)
Future = futures._PyFuture
all_tasks = getattr(tasks, '_py_all_tasks', None)
all_tasks = getattr(tasks, '_c_all_tasks', None)


@unittest.skipUnless(hasattr(futures, '_CFuture'),
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp