[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread Berker Peksag
Berker Peksag added the comment: Thanks! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread Berker Peksag
Berker Peksag added the comment: New changeset b93a52b136fd2285f2891eef91c50e3d36ea6f36 by Berker Peksag (Miss Islington (bot)) in branch '3.6': bpo-27846: Delete incorrect note in base64 docs (GH-5666) https://github.com/python/cpython/commit/b93a52b136fd2285f2891eef91c50e3d36ea6f36 ---

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread Berker Peksag
Berker Peksag added the comment: New changeset 2e8d9003ed7a97955c36fa19a9ce7c43d9ec83e1 by Berker Peksag (Miss Islington (bot)) in branch '3.7': bpo-27846: Delete incorrect note in base64 docs (GH-5666) https://github.com/python/cpython/commit/2e8d9003ed7a97955c36fa19a9ce7c43d9ec83e1 ---

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +5470 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread miss-islington
Change by miss-islington : -- pull_requests: +5471 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread Berker Peksag
Berker Peksag added the comment: New changeset 88c38a4049ded0e1f197fec3e76be7c0c0e83d7a by Berker Peksag (Zackery Spytz) in branch 'master': bpo-27846: Delete incorrect note in base64 docs (GH-5666) https://github.com/python/cpython/commit/88c38a4049ded0e1f197fec3e76be7c0c0e83d7a --

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread Zackery Spytz
Change by Zackery Spytz : -- nosy: +ZackerySpytz versions: +Python 3.7, Python 3.8 -Python 3.5 ___ Python tracker ___ ___ Python-bugs

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2018-02-13 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +5468 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-lis

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2016-08-25 Thread Antoine Pitrou
Antoine Pitrou added the comment: Agreed with David. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2016-08-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2016-08-25 Thread Jens Jørgen Mortensen
Changes by Jens Jørgen Mortensen : -- versions: +Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2016-08-25 Thread Jens Jørgen Mortensen
Jens Jørgen Mortensen added the comment: That would also be a solution. Also, the sentence is not quite grammatically correct: "when space [is] expensive". -- versions: -Python 3.5 ___ Python tracker __

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2016-08-24 Thread R. David Murray
R. David Murray added the comment: Maybe we should just drop that note. To achieve any sort of clarity we'd have to say that base85 is 15 for 12 and base64 is 16 for 12. And putting it that way it doesn't seem like all that much of an advantage :) -- nosy: +r.david.murray versions: +

[issue27846] Base64 expansion factor is 4 to 3, not 6 to 4

2016-08-24 Thread Jens Jørgen Mortensen
New submission from Jens Jørgen Mortensen: The documentation has a note saying: "Base64 has an expansion factor of 6 to 4". I believe it should be 4 to 3. https://docs.python.org/dev/library/base64.html -- assignee: docs@python components: Documentation messages: 273543 nosy: Jens.Jør