New submission from Akash Shende :
>>> import sys
>>> print(sys.maxsize.__doc__)
int([x]) -> integer
int(x, base=10) -> integer
Convert a number or string to an integer, or return 0 if no arguments
are given. If x is a number, return x.__int__(). For floating point
Akash Shende added the comment:
Yes. I checked that. Same for sys.maxunicode
--
___
Python tracker
<https://bugs.python.org/issue38213>
___
___
Python-bug
New submission from Akash Shende :
Currently lot of code still uses old placeholder and .format() methods for
formatting the string. Lets convert them all to f-string
"%s" % (name) => f'{name}'
"{name}".format(name="yoyo") = > f'{name}'
Change by Akash Shende :
--
keywords: +patch
pull_requests: +12237
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue36249>
___
___
Py
New submission from Akash Shende:
Right now Morsel dont accept cookie setting outside of reserved words defined
in http/cookies.py
--
components: Library (Lib)
messages: 288287
nosy: akash0x53
priority: normal
severity: normal
status: open
title: Support for SameSite Cookies
type