mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-14 19:36:38 +03:00
Improved parameter documentation [ci skip]
This commit is contained in:
parent
a79147ff96
commit
e319e32cec
|
@ -37,8 +37,8 @@ def i16le(c, o=0):
|
||||||
"""
|
"""
|
||||||
Converts a 2-bytes (16 bits) string to an unsigned integer.
|
Converts a 2-bytes (16 bits) string to an unsigned integer.
|
||||||
|
|
||||||
c: string containing bytes to convert
|
:param c: string containing bytes to convert
|
||||||
o: offset of bytes to convert in string
|
:param o: offset of bytes to convert in string
|
||||||
"""
|
"""
|
||||||
return unpack_from("<H", c, o)[0]
|
return unpack_from("<H", c, o)[0]
|
||||||
|
|
||||||
|
@ -47,8 +47,8 @@ def si16le(c, o=0):
|
||||||
"""
|
"""
|
||||||
Converts a 2-bytes (16 bits) string to a signed integer.
|
Converts a 2-bytes (16 bits) string to a signed integer.
|
||||||
|
|
||||||
c: string containing bytes to convert
|
:param c: string containing bytes to convert
|
||||||
o: offset of bytes to convert in string
|
:param o: offset of bytes to convert in string
|
||||||
"""
|
"""
|
||||||
return unpack_from("<h", c, o)[0]
|
return unpack_from("<h", c, o)[0]
|
||||||
|
|
||||||
|
@ -57,8 +57,8 @@ def i32le(c, o=0):
|
||||||
"""
|
"""
|
||||||
Converts a 4-bytes (32 bits) string to an unsigned integer.
|
Converts a 4-bytes (32 bits) string to an unsigned integer.
|
||||||
|
|
||||||
c: string containing bytes to convert
|
:param c: string containing bytes to convert
|
||||||
o: offset of bytes to convert in string
|
:param o: offset of bytes to convert in string
|
||||||
"""
|
"""
|
||||||
return unpack_from("<I", c, o)[0]
|
return unpack_from("<I", c, o)[0]
|
||||||
|
|
||||||
|
@ -67,8 +67,8 @@ def si32le(c, o=0):
|
||||||
"""
|
"""
|
||||||
Converts a 4-bytes (32 bits) string to a signed integer.
|
Converts a 4-bytes (32 bits) string to a signed integer.
|
||||||
|
|
||||||
c: string containing bytes to convert
|
:param c: string containing bytes to convert
|
||||||
o: offset of bytes to convert in string
|
:param o: offset of bytes to convert in string
|
||||||
"""
|
"""
|
||||||
return unpack_from("<i", c, o)[0]
|
return unpack_from("<i", c, o)[0]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user