vdir: use custom implementation of atomic_write#1393
Closed
mathstuf wants to merge 1 commit intopimutils:masterfrom
Closed
vdir: use custom implementation of atomic_write#1393mathstuf wants to merge 1 commit intopimutils:masterfrom
atomic_write#1393mathstuf wants to merge 1 commit intopimutils:masterfrom
Conversation
d80da54 to
efd186f
Compare
WhyNotHugo
reviewed
Feb 12, 2025
dc3541c to
2ebadd4
Compare
WhyNotHugo
reviewed
Feb 13, 2025
8817e10 to
48dabad
Compare
48dabad to
9cf674d
Compare
WhyNotHugo
reviewed
Feb 13, 2025
9cf674d to
786ffbf
Compare
WhyNotHugo
approved these changes
Feb 14, 2025
Member
WhyNotHugo
left a comment
There was a problem hiding this comment.
LGTM. Haven't had a change to properly test it yet.
Contributor
Author
|
Alas, it is one of those pieces of code where all of the "interesting" behavior is along the error path :/ . |
The `atomicwrites` library has been abandoned. This implementation is a bit stripped down a bit from what the library provided. Fixes: pimutils#1387
786ffbf to
62031dc
Compare
Member
|
Applied via 62031dc |
mathstuf
added a commit
to mathstuf/khard
that referenced
this pull request
Jul 10, 2025
Lifted from pimutils/khal#1393 (which I also authored). Note that `khal` used `mode='wb'` everywhere while `khard` uses the `atomicwrites` default mode of `w`. Fixes: lucc#342
mathstuf
added a commit
to mathstuf/todoman
that referenced
this pull request
Jul 10, 2025
Lifted from pimutils/khal#1393 (which I also authored). Fixes: pimutils#582
mathstuf
added a commit
to mathstuf/todoman
that referenced
this pull request
Jul 10, 2025
Lifted from pimutils/khal#1393 (which I also authored). Fixes: pimutils#582
mathstuf
added a commit
to mathstuf/todoman
that referenced
this pull request
Jul 10, 2025
Lifted from pimutils/khal#1393 (which I also authored). Fixes: pimutils#582
mathstuf
added a commit
to mathstuf/khard
that referenced
this pull request
Jul 10, 2025
Lifted from pimutils/khal#1393 (which I also authored). Note that `khal` used `mode='wb'` everywhere while `khard` uses the `atomicwrites` default mode of `w`. Fixes: lucc#342
mathstuf
added a commit
to mathstuf/khard
that referenced
this pull request
Jul 10, 2025
Lifted from pimutils/khal#1393 (which I also authored). Note that `khal` used `mode='wb'` everywhere while `khard` uses the `atomicwrites` default mode of `w`. Fixes: lucc#342
mathstuf
added a commit
to mathstuf/khard
that referenced
this pull request
Jul 10, 2025
Lifted from pimutils/khal#1393 (which I also authored). Note that `khal` used `mode='wb'` everywhere while `khard` uses the `atomicwrites` default mode of `w`. Fixes: lucc#342
mathstuf
added a commit
to mathstuf/khard
that referenced
this pull request
Jul 10, 2025
Lifted from pimutils/khal#1393 (which I also authored). Note that `khal` used `mode='wb'` everywhere while `khard` uses the `atomicwrites` default mode of `w`. Fixes: lucc#342
mathstuf
added a commit
to mathstuf/spyder
that referenced
this pull request
Jul 10, 2025
The package has been deprecated. Replace usage with open-coded replacement. Lifted from pimutils/khal#1393 (which I also authored). Fixes: spyder-ide#24689
mathstuf
added a commit
to mathstuf/spyder
that referenced
this pull request
Jul 10, 2025
The package has been deprecated. Replace usage with open-coded replacement. Lifted from pimutils/khal#1393 (which I also authored). Fixes: spyder-ide#24689
3 tasks
mathstuf
added a commit
to mathstuf/spyder
that referenced
this pull request
Jul 11, 2025
The package has been deprecated. Replace usage with open-coded replacement. Also copy the test suite for the function. Lifted from pimutils/khal#1393 (which I also authored). Fixes: spyder-ide#24689
mathstuf
added a commit
to mathstuf/spyder
that referenced
this pull request
Jul 11, 2025
The package has been deprecated. Replace usage with open-coded replacement. Also copy the test suite for the function. Lifted from pimutils/khal#1393 (which I also authored). Fixes: spyder-ide#24689
mathstuf
added a commit
to mathstuf/spyder
that referenced
this pull request
Jul 11, 2025
The package has been deprecated. Replace usage with open-coded replacement. Also copy the test suite for the function. Lifted from pimutils/khal#1393 (which I also authored). Fixes: spyder-ide#24689
mathstuf
added a commit
to mathstuf/todoman
that referenced
this pull request
Jul 14, 2025
Lifted from pimutils/khal#1393 (which I also authored). Fixes: pimutils#582
WhyNotHugo
pushed a commit
to pimutils/todoman
that referenced
this pull request
Jul 15, 2025
Lifted from pimutils/khal#1393 (which I also authored). Fixes: #582
mathstuf
added a commit
to mathstuf/spyder
that referenced
this pull request
Sep 30, 2025
The package has been deprecated. Replace usage with open-coded replacement. Also copy the test suite for the function. Lifted from pimutils/khal#1393 (which I also authored). Fixes: spyder-ide#24689
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The
atomicwriteslibrary has been abandoned.This implementation is a bit stripped down a bit from what the library provided.
Fixes: #1387