summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-05-03 02:34:31 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-05-03 02:34:31 (GMT)
commitc9083bf1a14d9949c07804123712d2a18566fe62 (patch)
tree25323e670803d2ad720618fd6e3c256eb7fb65c1 /Misc
parent97bd4b0cd9dec026bfaa66f492f1ea3c45abb1b1 (diff)
downloadcpython-c9083bf1a14d9949c07804123712d2a18566fe62.zip
cpython-c9083bf1a14d9949c07804123712d2a18566fe62.tar.gz
cpython-c9083bf1a14d9949c07804123712d2a18566fe62.tar.bz2
remove merge markers
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS27
1 files changed, 0 insertions, 27 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c189db7..e2b61c3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -101,7 +101,6 @@ Core and Builtins
Library
-------
-<<<<<<< local
- Issue #16914: new debuglevel 2 in smtplib adds timestamps to debug output.
- Issue #7159: urllib.request now supports sending auth credentials
@@ -126,32 +125,6 @@ Library
- Issue #21217: inspect.getsourcelines() now tries to compute the start and end
lines from the code object, fixing an issue when a lambda function is used as
decorator argument. Patch by Thomas Ballinger and Allison Kaptur.
-=======
-- Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine
- functions without __name__.
-
-- Issue #9246: On POSIX, os.getcwd() now supports paths longer than 1025 bytes.
- Patch written by William Orr.
-
-- Issues #24099, #24100, and #24101: Fix free-after-use bug in heapq's siftup
- and siftdown functions.
-
-- Backport collections.deque fixes from Python 3.5. Prevents reentrant badness
- during deletion by deferring the decref until the container has been restored
- to a consistent state.
-
-- Issue #23008: Fixed resolving attributes with boolean value is False in pydoc.
-
-- Fix asyncio issue 235: LifoQueue and PriorityQueue's put didn't
- increment unfinished tasks (this bug was introduced in 3.4.3 when
- JoinableQueue was merged with Queue).
-
-- Issue #23908: os functions now reject paths with embedded null character
- on Windows instead of silently truncate them.
-
-- Issue #23728: binascii.crc_hqx() could return an integer outside of the range
- 0-0xffff for empty data.
->>>>>>> other
- Issue #23811: Add missing newline to the PyCompileError error message.
Patch by Alex Shkop.