| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
…i module * Add the alphabet parameter in functions b2a_base64(), a2b_base64(), b2a_base85() and a2b_base85(). * And a number of "*_ALPHABET" constants. * Remove b2a_z85() and a2b_z85().
| static PyObject * | ||
| get_reverse_table(binascii_state *state, PyObject *alphabet, int size, int padchar) | ||
| { | ||
| PyObject *reverse_table; |
There was a problem hiding this comment.
I'd suggest having a goto error for cleanup in case this function grows.
Sorry, something went wrong.
There was a problem hiding this comment.
I think this is preliminary.
Sorry, something went wrong.
|
Damn, what is now? I spent more time fighting the CI than fixing genuine bugs. |
Sorry, something went wrong.
|
Are there other suggestions or notes? I am going to merge this PR, because it is a dependence for #146192 and other changes. |
Sorry, something went wrong.
|
Not from side! |
Sorry, something went wrong.
|
Thank you for your review @picnixz. |
Sorry, something went wrong.
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot ARM64 MacOS M1 Refleaks NoGIL 3.x (tier-2) has failed when building commit 4507d49. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/#/builders/1368/builds/4852 Failed tests:
Test leaking resources:
Summary of the results of the build (if available): == Click to see traceback logsTracebackTests.test_nonexistent_module_nested) ... ok
TracebackTests.test_broken_parent) ... ok
TracebackTests.test_unencodable_filename) ... skipped 'need TESTFN_UNENCODABLE'
TracebackTests.test_exec_failure_nested) ... ok
Traceback (most recent call last):
File "<string>", line 10, in <module>
File "<frozen importlib._bootstrap>", line 786, in module_from_spec
File "<frozen importlib._bootstrap_external>", line 1025, in create_module
File "<frozen importlib._bootstrap>", line 491, in _call_with_frames_removed
ImportError: module _test_module_state_shared does not support loading in subinterpreters
xpected failure
TracebackTests.test_import_bug) ... ok
TracebackTests.test_syntax_error) ... ok
TracebackTests.test_nonexistent_module) ... ok
TracebackTests.test_broken_from) ... ok
TracebackTests.test_broken_submodule) ... ok
TracebackTests.test_exec_failure) ... ok
TracebackTests.test_broken_parent_from) ... ok
|
Sorry, something went wrong.
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot s390x Fedora Stable Refleaks 3.x (tier-3) has failed when building commit 4507d49. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/#/builders/1641/builds/1849 Failed tests:
Test leaking resources:
Summary of the results of the build (if available): == Click to see traceback logsTracebackTests.test_nonexistent_module_nested) ... ok
TracebackTests.test_broken_parent) ... ok
TracebackTests.test_exec_failure_nested) ... ok
TracebackTests.test_import_bug) ... ok
TracebackTests.test_syntax_error) ... ok
TracebackTests.test_nonexistent_module) ... ok
TracebackTests.test_unencodable_filename) ... ok
TracebackTests.test_broken_from) ... ok
TracebackTests.test_broken_submodule) ... ok
TracebackTests.test_exec_failure) ... ok
TracebackTests.test_broken_parent_from) ... ok
|
Sorry, something went wrong.
⚠️⚠️⚠️ Buildbot failure ⚠️⚠️⚠️Hi! The buildbot PPC64LE Fedora Stable Refleaks 3.x (tier-2) has failed when building commit 4507d49. What do you need to do:
You can take a look at the buildbot page here: https://buildbot.python.org/#/builders/280/builds/2905 Failed tests:
Test leaking resources:
Summary of the results of the build (if available): == Click to see traceback logsTracebackTests.test_nonexistent_module_nested) ... ok
TracebackTests.test_broken_parent) ... ok
TracebackTests.test_exec_failure_nested) ... ok
TracebackTests.test_import_bug) ... ok
TracebackTests.test_syntax_error) ... ok
TracebackTests.test_nonexistent_module) ... ok
TracebackTests.test_unencodable_filename) ... ok
TracebackTests.test_broken_from) ... ok
TracebackTests.test_broken_submodule) ... ok
TracebackTests.test_exec_failure) ... ok
TracebackTests.test_broken_parent_from) ... ok
|
Sorry, something went wrong.
…i module (pythonGH-145981) * Add the alphabet parameter in functions b2a_base64(), a2b_base64(), b2a_base85(), and a2b_base85(). * And a number of "*_ALPHABET" constants. * Remove b2a_z85() and a2b_z85().
- Use the new `alphabet` parameter in `binascii` - Remove `binascii.a2b_base32hex()` and `binascii.b2a_base32hex()` - Change value for `.. versionadded::` ReST directive in docs for new `binascii` functions to "next" instead of "3.15"
|
This change introduced reference leaks in 3 tests:
I wrote #146230 to fix the leak. |
Sorry, something went wrong.
* upstream/main: (1475 commits) Docs: replace all `datetime` imports with `import datetime as dt` (python#145640) pythongh-146153: Use `frozendict` in pure python fallback for `curses.has_key` (python#146154) pythongh-138234: clarify returncode behavior for subprocesses created with `shell=True` (python#138536) pythongh-140947: fix contextvars handling for server tasks in asyncio (python#141158) pythonGH-100108: Add async generators best practices section (python#141885) pythonGH-145667: Merge `GET_ITER` and `GET_YIELD_FROM_ITER` (pythonGH-146120) pythongh-146228: Better fork support in cached FastPath (python#146231) pythongh-146227: Fix wrong type in _Py_atomic_load_uint16 in pyatomic_std.h (pythongh-146229) pythongh-145980: Fix copy/paste mistake in binascii.c (python#146230) pythongh-146092: Raise MemoryError on allocation failure in _zoneinfo (python#146165) pythongh-91279: Note `SOURCE_DATE_EPOCH` support in `ZipFile.writestr()` doc (python#139396) pythongh-146196: Fix Undefined Behavior in _PyUnicodeWriter_WriteASCIIString() (python#146201) pythongh-143930: Reject leading dashes in webbrowser URLs pythongh-145916: Soft-deprecate ctypes.util.find_library (pythonGH-145919) pythongh-146205: Check the errno with != 0 in close impls in select module (python#146206) pythongh-146171: Fix nested AttributeError suggestions (python#146188) pythongh-146099: Optimize _GUARD_CODE_VERSION+IP via function version symbols (pythonGH-146101) pythongh-145980: Add support for alternative alphabets in the binascii module (pythonGH-145981) pythongh-145754: Update signature retrieval in unittest.mock to use forwardref annotation format (python#145756) pythongh-145177: Add emscripten run --test, uses test args from config.toml (python#146160) ...
…i module (pythonGH-145981) * Add the alphabet parameter in functions b2a_base64(), a2b_base64(), b2a_base85(), and a2b_base85(). * And a number of "*_ALPHABET" constants. * Remove b2a_z85() and a2b_z85().
| Back | FazBrowse Home | New Git URL |
📚 Documentation preview 📚: https://cpython-previews--145981.org.readthedocs.build/