-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Patching the files in base and updating init.c #58495
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
base: master
Are you sure you want to change the base?
Conversation
base/asyncevent.jl
Outdated
@@ -9,7 +9,7 @@ Create a async condition that wakes up tasks waiting for it | |||
(by calling [`wait`](@ref) on the object) | |||
when notified from C by a call to `uv_async_send`. | |||
Waiting tasks are woken with an error when the object is closed (by [`close`](@ref)). | |||
Use [`isopen`](@ref) to check whether it is still active. | |||
Use [`isopen`](@ref) to check whether it is still active. An closed condition is inactive and will. |
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.
Besides the trailing whitespace, this sentence is incomplete
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.
@giordano updated all, please review the changes again.
base/asyncevent.jl
Outdated
""" | ||
close(t::Union{Timer, AsyncCondition}) | ||
Close an object `t` and thus mark it as inactive. Once a timer or condition is inactive, it will not produce a new event. | ||
See also: [`isopen`](@ref) | ||
""" | ||
|
||
function close(t::Union{Timer, AsyncCondition}) |
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.
The blank line between the string and the method definition means that the string is not being attached to the method as a docstring
base/regex.jl
Outdated
""" | ||
|
||
function match(re::Regex, str::Union{SubString{String}, String}, idx::Integer, |
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.
Again, blank line between string and method definition
I don't really understand what is going on here. These are updates to other PRs? |
Worked on a pr where the author has been inactive for the last year along side additions to my previous pr. |
using the pull requests #58464 and #58020, I have updated files in base and init.c for #50278 and #58020.