]> granicus.if.org Git - python/commitdiff
Issue #18080: merge from 3.3
authorNed Deily <nad@acm.org>
Tue, 28 May 2013 23:45:06 +0000 (16:45 -0700)
committerNed Deily <nad@acm.org>
Tue, 28 May 2013 23:45:06 +0000 (16:45 -0700)
1  2 
Lib/distutils/sysconfig.py
Misc/NEWS

Simple merge
diff --cc Misc/NEWS
index 97c8408dceb41aa58ae43748cd1151bda282e782,828e240c5bef66fe5da14ff73ccef6753cc22a9b..be1be6a4aa0ad0af8fc861c6f4e97004c269077c
+++ b/Misc/NEWS
@@@ -272,42 -223,61 +272,47 @@@ Librar
  - Issue #14971: unittest test discovery no longer gets confused when a function
    has a different __name__ than its name in the TestCase class dictionary.
  
 -- Issue #17678: Fix DeprecationWarning in the http/cookiejar.py by changing the
 -  usage of get_origin_req_host() to origin_req_host.
 -
 -- Issue #17666: Fix reading gzip files with an extra field.
 -
 -- Issue #17502: Process DEFAULT values in mock side_effect that returns iterator.
 -  Patch by Michael Foord.
 -
 -- Issue #17572: Avoid chained exceptions while passing bad directives to
 -  time.strptime().  Initial patch by Claudiu Popa.
 -
 -- Issue #17435: threading.Timer's __init__ method no longer uses mutable
 -  default values for the args and kwargs parameters.
 +- Issue #17487: The wave getparams method now returns a namedtuple rather than
 +  a plain tuple.
  
 -- Issue #17526: fix an IndexError raised while passing code without filename to
 -  inspect.findsource().  Initial patch by Tyler Doyle.
 +- Issue #17675: socket repr() provides local and remote addresses (if any).
 +  Patch by Giampaolo Rodola'
  
 -- Issue #16550: Update the opcode descriptions of pickletools to use unsigned
 -  integers where appropriate.  Initial patch by Serhiy Storchaka.
 +- Issue #17093: Make the ABCs in importlib.abc provide default values or raise
 +  reasonable exceptions for their methods to make them more amenable to super()
 +  calls.
  
 -IDLE
 -----
 +- Issue #17566: Make importlib.abc.Loader.module_repr() optional instead of an
 +  abstractmethod and raising NotImplementedError so as to be ignored by default.
  
 -- Issue #17838: Allow sys.stdin to be reassigned.
 -
 -- Issue #13495: Avoid loading the color delegator twice in IDLE.
 +- Issue #17678: Remove the use of deprecated method in http/cookiejar.py.
 +  Changing the usage of get_origin_req_host() to origin_req_host.
  
 -- Issue #17798: Allow IDLE to edit new files when specified on command line.
 -
 -- Issue #14735: Update IDLE docs to omit "Control-z on Windows".
 -
 -- Issue #17585: Fixed IDLE regression. Now closes when using exit() or quit().
 -
 -- Issue #17657: Show full Tk version in IDLE's about dialog.
 -  Patch by Todd Rovito.
 -
 -- Issue #17613: Prevent traceback when removing syntax colorizer in IDLE.
 -
 -- Issue #1207589: Backwards-compatibility patch for right-click menu in IDLE.
 +- Issue #17666: Fix reading gzip files with an extra field.
  
 -- Issue #16887: IDLE now accepts Cancel in tabify/untabify dialog box.
 +- Issue #16475: Support object instancing, recursion and interned strings
 +  in marshal
  
 -- Issue #17625: In IDLE, close the replace dialog after it is used.
 +- Issue #17502: Process DEFAULT values in mock side_effect that returns iterator.
  
 -- Issue #14254: IDLE now handles readline correctly across shell restarts.
 +- Issue #16795: On the ast.arguments object, unify vararg with varargannotation
 +  and kwarg and kwargannotation. Change the column offset of ast.Attribute to be
 +  at the attribute name.
  
 -- Issue #17614: IDLE no longer raises exception when quickly closing a file.
 +- Issue #17434: Properly raise a SyntaxError when a string occurs between future
 +  imports.
  
 -- Issue #6698: IDLE now opens just an editor window when configured to do so.
 +- Issue #17117: Import and @importlib.util.set_loader now set __loader__ when
 +  it has a value of None or the attribute doesn't exist.
  
 -- Issue #8900: Using keyboard shortcuts in IDLE to open a file no longer
 -  raises an exception.
 +- Issue #17032: The "global" in the "NameError: global name 'x' is not defined"
 +  error message has been removed.  Patch by Ram Rachum.
  
 -- Issue #6649: Fixed missing exit status in IDLE. Patch by Guilherme Polo.
++- Issue #18080: When building a C extension module on OS X, if the compiler
++  is overriden with the CC environment variable, use the new compiler as
++  the default for linking if LDSHARED is not also overriden.  This restores
++  Distutils behavior introduced in 3.2.3 and inadvertently dropped in 3.3.0.
  Tests
  -----