Today the Django team issued 1.10.3, 1.9.11, and 1.8.16 as part of our
security process. These releases address two security issues, and we
encourage all users to upgrade as soon as possible.
Details are available on the Django project weblog:
https://www.djangoproject.com/weblog/2016/nov/01/se
Today the Django team issued 1.9.10 and 1.8.15 as part of our security
process. These releases address a security issue, and we encourage all
users to upgrade as soon as possible.
Details are available on the Django project weblog:
https://www.djangoproject.com/weblog/2016/sep/26/security-relea
Today the Django team issued 1.10 release candidate 1, 1.9.8, and 1.8.14 as
part of our security process. This releases address a security issue, and
we encourage all users to upgrade as soon as possible.
Details are available on the Django project weblog:
https://www.djangoproject.com/weblog/2
Today the Django team issued 1.9.3 and 1.8.10 as part of our security
process. This releases address two security issues, and we encourage all
users to upgrade as soon as possible.
Details are available on the Django project weblog:
https://www.djangoproject.com/weblog/2016/mar/01/security-rele
Today the Django team issued multiple releases -- Django 1.7.11, 1.8.7, and
1.9rc2 -- as part of our security process. These releases address a
security issue, and we encourage all users to upgrade as soon as possible.
More details can be found on our blog:
https://www.djangoproject.com/weblog/
Today the Django team issued multiple releases -- Django 1.4.22, 1.7.10,
and 1.8.4 -- as part of our security process. These releases address a
security issue, and we encourage all users to upgrade as soon as possible.
More details can be found on our blog:
https://www.djangoproject.com/weblog/
Tom's question got me thinking. Should non-ASCII numerals be allowed ?
import re
for x in ("10", "६"):
print("INT", int(x))
print("RE", re.match("^-?\d+\Z", x) is not None)
On Python 3 this returns True and True unless you add re.ASCII flag.
On 10 July 2015 at 12:32, Florian Apolloner
In [1]: int(' 5 ')
Out[1]: 5
Cheers,
Florian
On Friday, July 10, 2015 at 12:00:20 PM UTC+2, tomv wrote:
>
> Out of interest what's wrong with casting to int and checking for
> exceptions?
>
> This is the removed code:
>
> try:
> int(value)
> except (ValueError, T
Out of interest what's wrong with casting to int and checking for
exceptions?
This is the removed code:
try:
int(value)
except (ValueError, TypeError):
raise ValidationError(_('Enter a valid integer.'), code='invalid')
Does this match different strings than the new regex
Today the Django team issued multiple releases -- Django 1.4.21, 1.7.9, and
1.8.3 -- as part of our security process. These releases address a couple
security issues, and we encourage all users to upgrade as soon as possible.
More details can be found on our blog:
https://www.djangoproject.com/
Today we've issued releases to address four security issues reported to us.
Full disclosure is on the djangoproject.com weblog:
https://www.djangoproject.com/weblog/2014/aug/20/security/
All users are encouraged to upgrade.
Additionally, for anyone who missed it, last week we published an adviso
Today we've issued releases to remedy three security issues reported to us.
Affected versions are Django 1.4, Django 1.5, Django 1.6 and the Django 1.7
beta.
Full details and download information are on the Django project weblog:
https://www.djangoproject.com/weblog/2014/may/14/security-releases
I'm experiencing a regression with 1.6.3, documented
in https://code.djangoproject.com/ticket/22494. From the looks of it, the
problem applies to all versions including master.
On Tuesday, April 22, 2014 1:37:39 AM UTC+2, James Bennett wrote:
>
> Today we've issued releases to remedy three secur
Today we've issued releases to remedy three security issues reported to us.
Affected versions are Django 1.4, Django 1.5, Django 1.6 and the Django 1.7
beta.
Full details and download information are on the Django project weblog:
https://www.djangoproject.com/weblog/2014/apr/21/security/
--
Yo
14 matches
Mail list logo