index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
binascii.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
1
-0/+1
*
bpo-15999: Accept arbitrary values for boolean parameters. (#15609)
Serhiy Storchaka
2022-12-03
1
-12/+12
*
gh-93172: Remove unnecessary "if"s in binascii_a2b_qp_impl() from Modules/bin...
oda-gitso
2022-05-25
1
-8/+2
*
bpo-38256: Fix binascii.crc32() when inputs are 4+GiB (GH-32000)
Gregory P. Smith
2022-03-20
1
-24/+51
*
bpo-43974: Move Py_BUILD_CORE_MODULE into module code (GH-29157)
Christian Heimes
2021-10-22
1
-0/+4
*
bpo-35134: Add Include/cpython/longobject.h (GH-29044)
Victor Stinner
2021-10-19
1
-0/+1
*
bpo-45434: Remove pystrhex.h header file (GH-28923)
Victor Stinner
2021-10-13
1
-2/+2
*
bpo-45085: Remove the binhex module (GH-28117)
Victor Stinner
2021-09-02
1
-418/+0
*
bpo-44678: Separate error message for discontinuous padding in binascii.a2b_b...
Idan Moral
2021-07-19
1
-2/+5
*
bpo-43086: Add handling for out-of-spec data in a2b_base64 (GH-24402)
Idan Moral
2021-07-19
1
-6/+46
*
Use get_binascii_state instead of PyModule_GetState (GH-26069)
Dong-hee Na
2021-05-12
1
-13/+13
*
Use calloc-based functions, not malloc. (GH-19152)
Andy Lester
2020-03-25
1
-8/+2
*
bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738)
Victor Stinner
2020-03-17
1
-9/+5
*
bpo-1635741: Fix potential refleaks in binascii module (GH-18613)
Hai Shi
2020-03-11
1
-7/+45
*
bpo-39353: binascii.crc_hqx() is no longer deprecated (GH-18276)
Victor Stinner
2020-01-30
1
-5/+0
*
bpo-39353: Deprecate the binhex module (GH-18025)
Victor Stinner
2020-01-22
1
-4/+29
*
bpo-34749: Improved performance of binascii.a2b_base64(). (GH-9444)
Sergey Fedoseev
2019-07-14
1
-86/+56
*
bpo-22385: Support output separators in hex methods. (#13578)
Gregory P. Smith
2019-05-29
1
-8/+25
*
bpo-31862: Port binascii to PEP 489 multiphase initialization (GH-4108)
Marcel Plch
2019-05-22
1
-34/+103
*
bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264)
Serhiy Storchaka
2019-03-13
1
-1/+1
*
bpo-34736: improve error message for invalid length b64decode inputs (GH-9563)
Tal Einat
2018-09-28
1
-3/+7
*
bpo-33770: improve base64 exception message for encoded inputs of invalid len...
Tal Einat
2018-06-10
1
-1/+12
*
bpo-32147: Improved perfomance of binascii.unhexlify(). (GH-4586)
Sergey Fedoseev
2018-02-26
1
-33/+5
*
bpo-9566: Fix some Windows x64 compiler warnings (#2492)
Segev Finer
2017-07-26
1
-1/+1
*
bpo-30103: Allow Uuencode in Python using backtick as zero instead of space (...
Xiang Zhang
2017-05-03
1
-4/+12
*
restore *data* parameter of binascii.b2a_base64 to positional-only (#1352)
Xiang Zhang
2017-05-01
1
-1/+2
*
bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485)
Serhiy Storchaka
2017-03-12
1
-8/+8
*
Issue #29004: Merge crc_hqx() doc from 3.5
Martin Panter
2016-12-24
1
-2/+2
|
\
|
*
Issue #29004: Document binascii.crc_hqx() implements CRC-CCITT
Martin Panter
2016-12-24
1
-2/+2
*
|
Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp().
Serhiy Storchaka
2016-09-14
1
-5/+7
|
\
\
|
|
/
|
*
Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp().
Serhiy Storchaka
2016-09-14
1
-5/+7
*
|
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Raymond Hettinger
2016-08-30
1
-2/+2
*
|
merge 3.5 (closes #27760)
Benjamin Peterson
2016-08-14
1
-9/+15
|
\
\
|
|
/
|
*
merge 3.4 (closes #27760)
Benjamin Peterson
2016-08-14
1
-9/+15
|
|
\
|
|
*
merge 3.3 (closes #27760)
Benjamin Peterson
2016-08-14
1
-9/+15
|
|
|
\
|
|
|
*
fix possible integer overflow in binascii.b2a_qp (closes #27760)
Benjamin Peterson
2016-08-14
1
-9/+16
*
|
|
|
- Issue #27332: Fixed the type of the first argument of module-level functions
Serhiy Storchaka
2016-07-07
1
-32/+32
|
\
\
\
\
|
|
/
/
/
|
*
|
|
Issue #27332: Fixed the type of the first argument of module-level functions
Serhiy Storchaka
2016-07-07
1
-32/+32
*
|
|
|
Issue #25923: Added more const qualifiers to signatures of static and private...
Serhiy Storchaka
2015-12-25
1
-17/+27
*
|
|
|
Issue #25923: Added the const qualifier to static constant arrays.
Serhiy Storchaka
2015-12-25
1
-7/+7
*
|
|
|
Refactor binascii.rledecode_hqx()
Victor Stinner
2015-10-14
1
-28/+25
*
|
|
|
Issue #25384: Fix binascii.rledecode_hqx()
Victor Stinner
2015-10-14
1
-4/+7
*
|
|
|
Issue #25384: Use _PyBytesWriter API in binascii
Victor Stinner
2015-10-13
1
-111/+83
*
|
|
|
Issue #25357: Add an optional newline paramer to binascii.b2a_base64().
Victor Stinner
2015-10-11
1
-8/+13
|
/
/
/
*
|
|
Switch binascii over to using the common _Py_strhex implementation for its hex
Gregory P. Smith
2015-04-26
1
-28/+3
*
|
|
Issue #23728: binascii.crc_hqx() could return an integer outside of the range
Serhiy Storchaka
2015-04-20
1
-8/+8
|
\
\
\
|
|
/
/
|
*
|
Issue #23728: binascii.crc_hqx() could return an integer outside of the range
Serhiy Storchaka
2015-04-20
1
-8/+8
*
|
|
Issue #23944: Argument Clinic now wraps long impl prototypes at column 78.
Larry Hastings
2015-04-14
1
-2/+3
*
|
|
Issue #23501: Argumen Clinic now generates code into separate files by default.
Serhiy Storchaka
2015-04-03
1
-2/+1
|
/
/
*
|
Issue #13637: Improve exception message of a2b_* functions.
Berker Peksag
2015-02-14
1
-2/+2
[next]