cpython/Doc/library
andyclegg 7fed7bd8bb bpo-31756: subprocess.run should alias universal_newlines to text (#4049)
Improve human friendliness of the Popen API: Add text=False as a
keyword-only argument to subprocess.Popen along with a Popen
attribute .text_mode and set this based on the
encoding/errors/universal_newlines/text arguments.

The universal_newlines parameter and attribute are maintained for
backwards compatibility.
2017-10-22 19:01:19 -07:00
..
2to3.rst
__future__.rst
__main__.rst
_dummy_thread.rst Restore dummy_threading and _dummy_thread, but deprecate them (bpo-31370) (#3648) 2017-09-18 22:04:20 +02:00
_thread.rst Restore dummy_threading and _dummy_thread, but deprecate them (bpo-31370) (#3648) 2017-09-18 22:04:20 +02:00
abc.rst bpo-31567: add or fix decorator markup in docs (#3959) 2017-10-12 10:39:43 -04:00
aifc.rst remote note about IRIX in aifc (#3299) 2017-09-04 13:32:34 -07:00
allos.rst
archiving.rst
argparse.rst bpo-26510: make argparse subparsers required by default (#3027) 2017-09-20 17:35:27 -04:00
array.rst
ast.rst
asynchat.rst
asyncio-dev.rst Improve grammar in asyncio documentation (GH-2993) 2017-08-04 00:20:42 +10:00
asyncio-eventloop.rst bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051) 2017-10-19 15:46:40 -04:00
asyncio-eventloops.rst
asyncio-protocol.rst
asyncio-queue.rst
asyncio-stream.rst
asyncio-subprocess.rst
asyncio-sync.rst
asyncio-task.rst
asyncio.rst
asyncore.rst
atexit.rst
audioop.rst
base64.rst
bdb.rst
binary.rst
binascii.rst
binhex.rst
bisect.rst
builtins.rst
bz2.rst
calendar.rst
cgi.rst
cgitb.rst
chunk.rst
cmath.rst
cmd.rst
code.rst
codecs.rst Improve IncrementalEncoder documentation (GH-2746) 2017-09-09 23:09:55 -07:00
codeop.rst
collections.abc.rst bpo-18558: Clarify glossary entry for "Iterable" (#3732) 2017-09-25 00:52:06 -07:00
collections.rst bpo-28638: Optimize namedtuple() creation time by minimizing use of exec() (#3454) 2017-09-10 10:23:36 -07:00
colorsys.rst
compileall.rst
concurrency.rst Restore dummy_threading and _dummy_thread, but deprecate them (bpo-31370) (#3648) 2017-09-18 22:04:20 +02:00
concurrent.futures.rst bpo-31540: Allow passing multiprocessing context to ProcessPoolExecutor (#3682) 2017-10-03 11:53:17 +02:00
concurrent.rst
configparser.rst bpo-23835: Restore legacy defaults= behavior for RawConfigParser (#3191) 2017-08-24 09:43:53 -07:00
constants.rst
contextlib.rst
copy.rst
copyreg.rst
crypt.rst
crypto.rst
csv.rst
ctypes.rst
curses.ascii.rst bpo-30872: Update the curses docs to Python 3. (#2620) 2017-10-04 22:44:13 +03:00
curses.panel.rst bpo-30872: Update the curses docs to Python 3. (#2620) 2017-10-04 22:44:13 +03:00
curses.rst bpo-30872: Update the curses docs to Python 3. (#2620) 2017-10-04 22:44:13 +03:00
custominterp.rst
datatypes.rst
datetime.rst
dbm.rst
debug.rst
decimal.rst
depgraph-output.png
development.rst
difflib.rst
dis.rst bpo-31709: Update importlib magic (#3906) 2017-10-06 10:18:10 -04:00
distribution.rst
distutils.rst
doctest.rst
dummy_threading.rst Restore dummy_threading and _dummy_thread, but deprecate them (bpo-31370) (#3648) 2017-09-18 22:04:20 +02:00
email.charset.rst
email.compat32-message.rst
email.contentmanager.rst
email.encoders.rst
email.errors.rst
email.examples.rst
email.generator.rst
email.header.rst
email.headerregistry.rst
email.iterators.rst
email.message.rst
email.mime.rst
email.parser.rst
email.policy.rst
email.rst
email.util.rst
ensurepip.rst bpo-31351: Set return code in ensurepip when pip fails (GH-3626) 2017-09-21 20:07:45 +10:00
enum.rst
errno.rst
exceptions.rst
faulthandler.rst
fcntl.rst
filecmp.rst
fileformats.rst
fileinput.rst
filesys.rst
fnmatch.rst bpo-30397: Add re.Pattern and re.Match. (#1646) 2017-10-04 20:09:49 +03:00
formatter.rst
fpectl.rst
fractions.rst
frameworks.rst
ftplib.rst
functional.rst
functions.rst bpo-31567: more decorator markup fixes in docs (GH-3959) (#3966) 2017-10-12 12:28:55 -04:00
functools.rst bpo-31567: add or fix decorator markup in docs (#3959) 2017-10-12 10:39:43 -04:00
gc.rst bpo-31558: Add gc.freeze() (#3705) 2017-10-16 12:49:41 -07:00
getopt.rst
getpass.rst
gettext.rst bpo-31667: Fix gettext related links. (#3860) 2017-10-04 20:28:20 +03:00
glob.rst
grp.rst
gzip.rst
hashlib-blake2-tree.png
hashlib.rst Docs: correct hashlib.blake2 keyed hashing example (bpo-31560) 2017-09-23 10:18:40 -07:00
heapq.rst
hmac.rst
html.entities.rst
html.parser.rst
html.rst
http.client.rst
http.cookiejar.rst
http.cookies.rst
http.rst
http.server.rst
i18n.rst
idle.rst bpo-314777: IDLE - improve rstrip entry in doc (#3602) 2017-09-15 13:05:28 -04:00
imaplib.rst
imghdr.rst
imp.rst
importlib.rst bpo-31799: Make module.__spec__ more discoverable (#4010) 2017-10-17 15:52:38 -04:00
index.rst
inspect.rst
internet.rst
intro.rst
io.rst
ipaddress.rst bpo-20825: Containment test for ip_network in ip_network. 2017-10-22 23:39:49 +02:00
ipc.rst
itertools.rst bpo-27385: Clarify docstring for groupby() (#3738) 2017-09-25 01:21:06 -07:00
json.rst Make json.dumps() example to be PEP-8 compliant. (GH-3472) 2017-09-09 09:39:36 -07:00
keyword.rst
language.rst
linecache.rst
locale.rst bpo-31667: Fix gettext related links. (#3860) 2017-10-04 20:28:20 +03:00
logging.config.rst bpo-31080: Allowed logging.config.fileConfig() to accept both args and kwargs. (GH-2979) 2017-08-02 21:44:28 +01:00
logging.handlers.rst
logging.rst
lzma.rst
macpath.rst
mailbox.rst
mailcap.rst
markup.rst
marshal.rst
math.rst
mimetypes.rst
misc.rst
mm.rst
mmap.rst
modulefinder.rst
modules.rst
msilib.rst bpo-31720: msilib documentation, change MsiError into MSIError (GH-3914) 2017-10-07 07:55:00 -07:00
msvcrt.rst
multiprocessing.rst
netdata.rst
netrc.rst
nis.rst
nntplib.rst
numbers.rst
numeric.rst
operator.rst bpo-30085: Improve documentation for operator (#1171) 2017-09-24 14:29:22 -04:00
optparse.rst
os.path.rst
os.rst
ossaudiodev.rst
othergui.rst
parser.rst
pathlib-inheritance.png
pathlib-inheritance.svg
pathlib.rst
pdb.rst bpo-31389 Add an optional header argument to pdb.set_trace() (#3438) 2017-09-22 12:29:42 -04:00
persistence.rst
pickle.rst
pickletools.rst
pipes.rst
pkgutil.rst
platform.rst
plistlib.rst
poplib.rst
posix.rst
pprint.rst
profile.rst time.clock() now emits a DeprecationWarning (GH-4020) 2017-10-17 14:46:45 -07:00
pty.rst
pwd.rst
py_compile.rst
pyclbr.rst
pydoc.rst bpo-31128: Allow pydoc to bind to arbitrary hostnames (#3011) 2017-09-14 17:54:09 -04:00
pyexpat.rst
python.rst
queue.rst
quopri.rst
random.rst
re.rst bpo-31714: Improved regular expression documentation. (#3907) 2017-10-14 11:14:26 +03:00
readline.rst bpo-31537: Update readline documentation example. (GH-3925) 2017-10-10 14:52:58 -07:00
reprlib.rst
resource.rst
rlcompleter.rst
runpy.rst
sched.rst
secrets.rst
select.rst
selectors.rst
shelve.rst
shlex.rst
shutil.rst
signal.rst bpo-30807: signal.setitimer() now uses _PyTime API (GH-3865) 2017-10-13 13:49:43 -07:00
site.rst
smtpd.rst
smtplib.rst
sndhdr.rst
socket.rst bpo-27584: New addition of vSockets to the python socket module (#2489) 2017-09-06 15:18:10 -07:00
socketserver.rst
spwd.rst
sqlite3.rst
ssl.rst bpo-31533: fix broken link to OpenSSL docs (#3674) 2017-09-20 20:20:18 +02:00
stat.rst
statistics.rst
stdtypes.rst
string.rst bpo-31672: doc: Remove one sentence from library/string.rst (GH-3990) 2017-10-14 21:22:41 +09:00
stringprep.rst
struct.rst
subprocess.rst bpo-31756: subprocess.run should alias universal_newlines to text (#4049) 2017-10-22 19:01:19 -07:00
sunau.rst
superseded.rst
symbol.rst
symtable.rst
sys.rst bpo-28647: Update -u documentation after bpo-30404 (GH-3961) 2017-10-13 15:16:31 +03:00
sysconfig.rst Remove all mention of Windows IA-64 support (GH-3389) 2017-09-06 15:45:25 -07:00
syslog.rst
tabnanny.rst
tarfile.rst
telnetlib.rst
tempfile.rst
termios.rst
test.rst bpo-31567: add or fix decorator markup in docs (#3959) 2017-10-12 10:39:43 -04:00
text.rst
textwrap.rst
threading.rst point to the module-level get_ident function rather than the one in _thread (#3782) 2017-09-26 23:13:15 -07:00
time.rst time.clock() now emits a DeprecationWarning (GH-4020) 2017-10-17 14:46:45 -07:00
timeit.rst
tk.rst
tkinter.rst
tkinter.scrolledtext.rst
tkinter.tix.rst
tkinter.ttk.rst bpo-27319, bpo-31508: Document deprecation in Treeview.selection(). (#3667) 2017-09-24 14:34:09 +03:00
token.rst bpo-30406: Make async and await proper keywords (#1669) 2017-10-05 23:24:46 -04:00
tokenize.rst bpo-31394: Make tokenize.rst PEP 8-compliant (GH-3526) 2017-09-12 21:00:00 -07:00
trace.rst
traceback.rst
tracemalloc.rst
tty.rst
tulip_coro.dia
tulip_coro.png
turtle-star.pdf
turtle-star.png
turtle-star.ps
turtle.rst
types.rst
typing.rst bpo-31567: more decorator markup fixes in docs (GH-3959) (#3966) 2017-10-12 12:28:55 -04:00
undoc.rst
unicodedata.rst
unittest.mock-examples.rst
unittest.mock.rst bpo-30541: Add new method to seal mocks (GH61923) 2017-10-17 04:35:11 -07:00
unittest.rst Improve test suite customization example (GH-3967) 2017-10-13 06:41:57 +03:00
unix.rst
urllib.error.rst
urllib.parse.rst
urllib.request.rst
urllib.robotparser.rst
urllib.rst
uu.rst
uuid.rst
venv.rst
warnings.rst
wave.rst
weakref.rst
webbrowser.rst
windows.rst
winreg.rst
winsound.rst
wsgiref.rst
xdrlib.rst
xml.dom.minidom.rst
xml.dom.pulldom.rst
xml.dom.rst
xml.etree.elementtree.rst bpo-31648: Improve ElementPath (#3835) 2017-09-30 16:35:21 +03:00
xml.rst
xml.sax.handler.rst
xml.sax.reader.rst
xml.sax.rst
xml.sax.utils.rst
xmlrpc.client.rst
xmlrpc.rst
xmlrpc.server.rst
zipapp.rst bpo-31638: Add compression support to zipapp (GH-3819) 2017-09-29 18:31:52 +01:00
zipfile.rst
zipimport.rst
zlib.rst