File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -491,6 +491,14 @@ base64
491491binascii
492492--------
493493
494+ * Added functions for Ascii85, Base85, and Z85 encoding:
495+
496+ - :func: `~binascii.b2a_ascii85 ` and :func: `~binascii.a2b_ascii85 `
497+ - :func: `~binascii.b2a_base85 ` and :func: `~binascii.a2b_base85 `
498+ - :func: `~binascii.b2a_z85 ` and :func: `~binascii.a2b_z85 `
499+
500+ (Contributed by James Seo and Serhiy Storchaka in :gh: `101178 `.)
501+
494502* Added the *wrapcol * parameter in :func: `~binascii.b2a_base64 `.
495503 (Contributed by Serhiy Storchaka in :gh: `143214 `.)
496504
@@ -1059,6 +1067,11 @@ base64 & binascii
10591067 faster thanks to simple CPU pipelining optimizations.
10601068 (Contributed by Gregory P. Smith and Serhiy Storchaka in :gh: `143262 `.)
10611069
1070+ * Implementation for Ascii85, Base85, and Z85 encoding has been rewritten in C.
1071+ Encoding and decoding is now two orders of magnitude faster and consumes
1072+ two orders of magnitude less memory.
1073+ (Contributed by James Seo and Serhiy Storchaka in :gh: `101178 `.)
1074+
10621075csv
10631076---
10641077
You can’t perform that action at this time.
0 commit comments