-
-
Notifications
You must be signed in to change notification settings - Fork 21
Retain raw performance using internal C Function #245
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Vizonex
wants to merge
31
commits into
aio-libs:master
Choose a base branch
from
Vizonex:_helpers_h
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 23 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
ebca276
Retain raw Performance using header file
Vizonex fde50f5
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 109b3a7
add changes to timeline
Vizonex e936ad5
Merge branch '_helpers_h' of https://github.com/Vizonex/propcache int…
Vizonex a95f2f2
fix spelling mistakes
Vizonex 067c6c6
spelling mistake fix in _helpers_c.pyx
Vizonex 90930ea
reformat function code
Vizonex 6163eb9
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 5723881
add same performance optimizations for cached_property
Vizonex 951f14c
just extern the function inline there is no use in an extra header fi…
Vizonex a4a11fa
ensure changes reflect the ones made in the timeline
Vizonex 99b85f6
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] b1fb8cc
removed unused functions to make linter happy.
Vizonex b5fe811
Merge branch '_helpers_h' of https://github.com/Vizonex/propcache int…
Vizonex 431da53
use Py_XINCREF incase val comes out as NULL
Vizonex e0a2d7b
improve cache type check performance
Vizonex 5104841
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] 8e66e62
reformat C code portion
Vizonex f38ad33
Merge branch 'master' into _helpers_h
Vizonex 8800269
implement given suggestion to prevent memory leaks and leave in comme…
Vizonex 64dfa66
Merge branch '_helpers_h' of https://github.com/Vizonex/propcache int…
Vizonex 7d054a1
Merge branch 'master' into _helpers_h
Vizonex 035086d
Merge branch 'master' into _helpers_h
Vizonex df60c83
fix wording of timeline
Vizonex 68daad1
Merge branch 'master' into _helpers_h
Vizonex d005d50
Merge branch 'master' into _helpers_h
Vizonex 7ced43a
Merge branch 'master' into _helpers_h
Vizonex 4b71133
Merge branch 'master' into _helpers_h
Vizonex 9cf61d4
Merge branch 'master' into _helpers_h
Vizonex 7b92f21
Modify test coverage for being ridiculously unfair.
Vizonex 2e63aa5
Merge branch 'master' into _helpers_h
Vizonex File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| Retain raw performance of propcache by keeping it's critical logic | ||
| in a C function instead of in Cython. | ||
| -- by :user:`Vizonex`. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No imperative mood and no period before the em dash plz.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are my changes much improved now?