File: base64.pyi

package info (click to toggle)
python-librt 0.7.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 920 kB
  • sloc: ansic: 13,889; python: 293; makefile: 6
file content (4 lines) | stat: -rw-r--r-- 180 bytes parent folder | download
1
2
3
4
def b64encode(s: bytes) -> bytes: ...
def b64decode(s: bytes | str) -> bytes: ...
def urlsafe_b64encode(s: bytes) -> bytes: ...
def urlsafe_b64decode(s: bytes | str) -> bytes: ...