]> granicus.if.org Git - python/commitdiff
Issue #11635: Don't use polling in worker threads and processes launched by
authorAntoine Pitrou <solipsis@pitrou.net>
Sat, 26 Mar 2011 18:33:44 +0000 (19:33 +0100)
committerAntoine Pitrou <solipsis@pitrou.net>
Sat, 26 Mar 2011 18:33:44 +0000 (19:33 +0100)
concurrent.futures.

1  2 
Misc/NEWS

diff --cc Misc/NEWS
index 252af664d55c178bc87a32fb95c1007dfa4b238a,f5ff837d76920c278236a22e6485efc96cfe240f..028d248708388ea00bd3b26fbaf9d2d6a25aa9c9
+++ b/Misc/NEWS
@@@ -91,26 -53,10 +91,29 @@@ Core and Builtin
  Library
  -------
  
 -- Issue #11628: cmp_to_key generated class should use __slots__
+ - Issue #11635: Don't use polling in worker threads and processes launched by
+   concurrent.futures.
 +- Issue #6811: Allow importlib to change a code object's co_filename attribute
 +  to match the path to where the source code currently is, not where the code
 +  object originally came from.
 +
 +- Issue #8754: Have importlib use the repr of a module name in error messages.
 +
 +- Issue #11591: Prevent "import site" from modifying sys.path when python
 +  was started with -S.
 +
 +- collections.namedtuple() now adds a _source attribute to the generated
 +  class.  This make the source more accessible than the outdated
 +  "verbose" option which prints to stdout but doesn't make the source
 +  string available.
 +
 +- Issue #11371: Mark getopt error messages as localizable.  Patch by Filip
 +  GruszczyƄski.
 +
 +- Issue #11333: Add __slots__ to collections ABCs.
 +
 +- Issue #11628: cmp_to_key generated class should use __slots__.
  
  - Issue #11666: let help() display named tuple attributes and methods
    that start with a leading underscore.