summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Library
diff options
context:
space:
mode:
authorXtreak <tir.karthi@gmail.com>2019-09-13 11:29:00 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-09-13 11:29:00 (GMT)
commitbb41147eab15a2958f4ad38261e5bf608f6ace1b (patch)
tree1a570af193941c5b9d86f5c7dd2e378017e73711 /Misc/NEWS.d/next/Library
parentd31b31516c71890e8735606aec1dbf2bfb8fd6be (diff)
downloadcpython-bb41147eab15a2958f4ad38261e5bf608f6ace1b.zip
cpython-bb41147eab15a2958f4ad38261e5bf608f6ace1b.tar.gz
cpython-bb41147eab15a2958f4ad38261e5bf608f6ace1b.tar.bz2
bpo-12144: Handle cookies with expires attribute in CookieJar.make_cookies (GH-13921)
Handle time comparison for cookies with `expires` attribute when `CookieJar.make_cookies` is called. Co-authored-by: Demian Brecht <demianbrecht@gmail.com> https://bugs.python.org/issue12144 Automerge-Triggered-By: @asvetlov
Diffstat (limited to 'Misc/NEWS.d/next/Library')
-rw-r--r--Misc/NEWS.d/next/Library/2019-06-08-23-26-58.bpo-12144.Z7mz-q.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-06-08-23-26-58.bpo-12144.Z7mz-q.rst b/Misc/NEWS.d/next/Library/2019-06-08-23-26-58.bpo-12144.Z7mz-q.rst
new file mode 100644
index 0000000..ee802f8
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-06-08-23-26-58.bpo-12144.Z7mz-q.rst
@@ -0,0 +1,2 @@
+Ensure cookies with ``expires`` attribute are handled in
+:meth:`CookieJar.make_cookies`.