-
-
Notifications
You must be signed in to change notification settings - Fork 33.1k
Closed as not planned
Closed as not planned
Copy link
Labels
stdlibStandard Library Python modules in the Lib/ directoryStandard Library Python modules in the Lib/ directorytype-featureA feature request or enhancementA feature request or enhancement
Description
Feature or enhancement
Proposal:
I propose adding new encoding methods to the Base64 module to support Base2 encoding with two variations:
- Base2MSBF (Most Significant Bit First)
- Base2LSBF (Least Significant Bit First)
These methods are designed to enable bit-level encoding with configurable bit order:
- Base2MSBF: Arranges bits from the most significant to the least significant.
- Base2LSBF: Arranges bits from the least significant to the most significant.
Has this already been discussed elsewhere?
No response given
Links to previous discussion of this feature:
No response
Linked PRs
Metadata
Metadata
Assignees
Labels
stdlibStandard Library Python modules in the Lib/ directoryStandard Library Python modules in the Lib/ directorytype-featureA feature request or enhancementA feature request or enhancement