mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-06 01:22:35 +00:00
[utils] Rename try_multipart_encode to _multipart_encode_impl
To state that this is an internal function and people should be careful when using it outside youtube-dl.
This commit is contained in:
parent
228cd9bb90
commit
10c87c151b
@ -2098,7 +2098,7 @@ def update_Request(req, url=None, data=None, headers={}, query={}):
|
|||||||
return new_req
|
return new_req
|
||||||
|
|
||||||
|
|
||||||
def try_multipart_encode(data, boundary):
|
def _multipart_encode_impl(data, boundary):
|
||||||
content_type = 'multipart/form-data; boundary=%s' % boundary
|
content_type = 'multipart/form-data; boundary=%s' % boundary
|
||||||
|
|
||||||
out = b''
|
out = b''
|
||||||
@ -2140,7 +2140,7 @@ def multipart_encode(data, boundary=None):
|
|||||||
boundary = '---------------' + str(random.randrange(0x0fffffff, 0xffffffff))
|
boundary = '---------------' + str(random.randrange(0x0fffffff, 0xffffffff))
|
||||||
|
|
||||||
try:
|
try:
|
||||||
out, content_type = try_multipart_encode(data, boundary)
|
out, content_type = _multipart_encode_impl(data, boundary)
|
||||||
break
|
break
|
||||||
except ValueError:
|
except ValueError:
|
||||||
if has_specified_boundary:
|
if has_specified_boundary:
|
||||||
|
Loading…
Reference in New Issue
Block a user