]> granicus.if.org Git - python/commitdiff
[merge from 3.5] - Issue #27466: Change time format returned by
authorSenthil Kumaran <senthil@uthcode.com>
Sun, 10 Jul 2016 13:49:49 +0000 (06:49 -0700)
committerSenthil Kumaran <senthil@uthcode.com>
Sun, 10 Jul 2016 13:49:49 +0000 (06:49 -0700)
http.cookie.time2netscape, confirming the netscape cookie format.

1  2 
Misc/NEWS

diff --cc Misc/NEWS
index de68f270ec564d43269d513ba4a225476027a983,12d0d45fb5fb2988989d42e146a13f2043d901c8..b7ecaf762a5fd5d0d237745caedc8b93bb2dcf0c
+++ b/Misc/NEWS
@@@ -24,38 -16,19 +24,42 @@@ Core and Builtin
  Library
  -------
  
 -- Issue #26664: Fix activate.fish by removing mis-use of ``$``.
+ - Issue #27466: Change time format returned by http.cookie.time2netscape,
+   confirming the netscape cookie format and making it consistent with
+   documentation.
 +- Issue #21708: Deprecated dbm.dumb behavior that differs from common dbm
 +  behavior: creating a database in 'r' and 'w' modes and modifying a database
 +  in 'r' mode.
 +
 +- Issue #26721: Change the socketserver.StreamRequestHandler.wfile attribute
 +  to implement BufferedIOBase. In particular, the write() method no longer
 +  does partial writes.
 +
 +- Issue #22115: Added methods trace_add, trace_remove and trace_info in the
 +  tkinter.Variable class.  They replace old methods trace_variable, trace,
 +  trace_vdelete and trace_vinfo that use obsolete Tcl commands and might
 +  not work in future versions of Tcl.  Fixed old tracing methods:
 +  trace_vdelete() with wrong mode no longer break tracing, trace_vinfo() now
 +  always returns a list of pairs of strings, tracing in the "u" mode now works.
  
 -- Issue #22115: Fixed tracing Tkinter variables: trace_vdelete() with wrong
 -  mode no longer break tracing, trace_vinfo() now always returns a list of
 -  pairs of strings, tracing in the "u" mode now works.
 +- Issue #26243: Only the level argument to zlib.compress() is keyword argument
 +  now.  The first argument is positional-only.
  
 -- Fix a scoping issue in importlib.util.LazyLoader which triggered an
 -  UnboundLocalError when lazy-loading a module that was already put into
 -  sys.modules.
 +- Issue #27038: Expose the DirEntry type as os.DirEntry. Code patch by
 +  Jelle Zijlstra.
 +
 +- Issue #27186: Update os.fspath()/PyOS_FSPath() to check the return value of
 +  __fspath__() to be either str or bytes.
 +
 +- Issue #18726: All optional parameters of the dump(), dumps(),
 +  load() and loads() functions and JSONEncoder and JSONDecoder class
 +  constructors in the json module are now keyword-only.
 +
 +- Issue #27319: Methods selection_set(), selection_add(), selection_remove()
 +  and selection_toggle() of ttk.TreeView now allow passing multiple items as
 +  multiple arguments instead of passing them as a tuple.  Deprecated
 +  undocumented ability of calling the selection() method with arguments.
  
  - Issue #27079: Fixed curses.ascii functions isblank(), iscntrl() and ispunct().