gh-134201: Expand Base85 Documentation#134288
Merged
CAM-Gerlach merged 9 commits intoMay 19, 2025
Merged
Conversation
cmaloney
reviewed
May 19, 2025
cmaloney
approved these changes
May 19, 2025
CAM-Gerlach
reviewed
May 19, 2025
CAM-Gerlach
left a comment
Member
There was a problem hiding this comment.
LGTM, just some minor changes to clarify the text.
Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
CAM-Gerlach
reviewed
May 19, 2025
CAM-Gerlach
approved these changes
May 19, 2025
CAM-Gerlach
left a comment
Member
There was a problem hiding this comment.
LGTM now, thanks @biniona !
|
Thanks @biniona for the PR, and @CAM-Gerlach for merging it 🌮🎉.. I'm working now to backport this PR to: 3.13. |
|
Thanks @biniona for the PR, and @CAM-Gerlach for merging it 🌮🎉.. I'm working now to backport this PR to: 3.14. |
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
May 19, 2025
pythonGH-134288) Explain history of de-facto standard and how to pick between the two Base-85 encoding functions in the base-64 module. --------- (cherry picked from commit 66aaad6) Co-authored-by: Alek Binion <aleksander.binion@gmail.com> Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this pull request
May 19, 2025
pythonGH-134288) Explain history of de-facto standard and how to pick between the two Base-85 encoding functions in the base-64 module. --------- (cherry picked from commit 66aaad6) Co-authored-by: Alek Binion <aleksander.binion@gmail.com> Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
|
GH-134297 is a backport of this pull request to the 3.13 branch. |
|
GH-134298 is a backport of this pull request to the 3.14 branch. |
CAM-Gerlach
added a commit
that referenced
this pull request
May 20, 2025
…cs (GH-134288) (#134298) gh-134201: Expand explanation of Base85 encodings in base64 docs (GH-134288) Explain history of de-facto standard and how to pick between the two Base-85 encoding functions in the base-64 module. --------- (cherry picked from commit 66aaad6) Co-authored-by: Alek Binion <aleksander.binion@gmail.com> Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
CAM-Gerlach
added a commit
that referenced
this pull request
May 20, 2025
…cs (GH-134288) (#134297) gh-134201: Expand explanation of Base85 encodings in base64 docs (GH-134288) Explain history of de-facto standard and how to pick between the two Base-85 encoding functions in the base-64 module. --------- (cherry picked from commit 66aaad6) Co-authored-by: Alek Binion <aleksander.binion@gmail.com> Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
Contributor
|
@biniona live in the docs! https://docs.python.org/3/library/base64.html |
Pranjal095
pushed a commit
to Pranjal095/cpython
that referenced
this pull request
Jul 12, 2025
python#134288) Explain history of de-facto standard and how to pick between the two Base-85 encoding functions in the base-64 module. --------- Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
taegyunkim
pushed a commit
to taegyunkim/cpython
that referenced
this pull request
Aug 4, 2025
python#134288) Explain history of de-facto standard and how to pick between the two Base-85 encoding functions in the base-64 module. --------- Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM>
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.
Expands Documentation of Base-85 encodings. Explains history of de-facto standard and how to pick between the two Base-85 encoding functions in the
base-64module.