Update pydoc topics and fix supsicious markup for 3.4.2 final.

This commit is contained in:
Larry Hastings 2014-10-05 19:03:48 -07:00
parent e796b9e477
commit c6256e5f7d
3 changed files with 85 additions and 85 deletions

View File

@ -1864,7 +1864,7 @@ expression support in the :mod:`re` module).
For example::
>>> 'ab c\n\nde fg\rkl\r\n'.splitlines()
['ab c', '', 'de fg', 'kl']``
['ab c', '', 'de fg', 'kl']
>>> 'ab c\n\nde fg\rkl\r\n'.splitlines(keepends=True)
['ab c\n', '\n', 'de fg\r', 'kl\r\n']
@ -2932,7 +2932,7 @@ place, and instead produce new objects.
For example::
>>> b'ab c\n\nde fg\rkl\r\n'.splitlines()
[b'ab c', b'', b'de fg', b'kl']``
[b'ab c', b'', b'de fg', b'kl']
>>> b'ab c\n\nde fg\rkl\r\n'.splitlines(keepends=True)
[b'ab c\n', b'\n', b'de fg\r', b'kl\r\n']

View File

@ -256,11 +256,6 @@ whatsnew/2.4,,:System,
whatsnew/2.5,,:memory,:memory:
whatsnew/2.5,,:step,[start:stop:step]
whatsnew/2.5,,:stop,[start:stop:step]
whatsnew/2.7,1619,::,"ParseResult(scheme='http', netloc='[1080::8:800:200C:417A]',"
whatsnew/2.7,1619,::,>>> urlparse.urlparse('http://[1080::8:800:200C:417A]/foo')
whatsnew/2.7,735,:Sunday,'2009:4:Sunday'
whatsnew/2.7,862,:Cookie,"export PYTHONWARNINGS=all,error:::Cookie:0"
whatsnew/2.7,862,::,"export PYTHONWARNINGS=all,error:::Cookie:0"
whatsnew/3.2,,:affe,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
whatsnew/3.2,,:affe,>>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
whatsnew/3.2,,:beef,"netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',"
@ -282,3 +277,8 @@ whatsnew/changelog,,:PythonCmd,"With Tk < 8.5 _tkinter.c:PythonCmd() raised Unic
whatsnew/changelog,,::,": Fix FTP tests for IPv6, bind to ""::1"" instead of ""localhost""."
whatsnew/changelog,,::,": Use ""127.0.0.1"" or ""::1"" instead of ""localhost"" as much as"
whatsnew/changelog,,:password,user:password
whatsnew/2.7,780,:Sunday,'2009:4:Sunday'
whatsnew/2.7,907,::,"export PYTHONWARNINGS=all,error:::Cookie:0"
whatsnew/2.7,907,:Cookie,"export PYTHONWARNINGS=all,error:::Cookie:0"
whatsnew/2.7,1657,::,>>> urlparse.urlparse('http://[1080::8:800:200C:417A]/foo')
whatsnew/2.7,1657,::,"ParseResult(scheme='http', netloc='[1080::8:800:200C:417A]',"

1 c-api/arg :ref PyArg_ParseTuple(args, "O|O:ref", &object, &callback)
256 whatsnew/2.5 :memory :memory:
257 whatsnew/2.5 :step [start:stop:step]
258 whatsnew/2.5 :stop [start:stop:step]
whatsnew/2.7 1619 :: ParseResult(scheme='http', netloc='[1080::8:800:200C:417A]',
whatsnew/2.7 1619 :: >>> urlparse.urlparse('http://[1080::8:800:200C:417A]/foo')
whatsnew/2.7 735 :Sunday '2009:4:Sunday'
whatsnew/2.7 862 :Cookie export PYTHONWARNINGS=all,error:::Cookie:0
whatsnew/2.7 862 :: export PYTHONWARNINGS=all,error:::Cookie:0
259 whatsnew/3.2 :affe netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',
260 whatsnew/3.2 :affe >>> urllib.parse.urlparse('http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/')
261 whatsnew/3.2 :beef netloc='[dead:beef:cafe:5417:affe:8FA3:deaf:feed]',
277 whatsnew/changelog :: : Fix FTP tests for IPv6, bind to "::1" instead of "localhost".
278 whatsnew/changelog :: : Use "127.0.0.1" or "::1" instead of "localhost" as much as
279 whatsnew/changelog :password user:password
280 whatsnew/2.7 780 :Sunday '2009:4:Sunday'
281 whatsnew/2.7 907 :: export PYTHONWARNINGS=all,error:::Cookie:0
282 whatsnew/2.7 907 :Cookie export PYTHONWARNINGS=all,error:::Cookie:0
283 whatsnew/2.7 1657 :: >>> urlparse.urlparse('http://[1080::8:800:200C:417A]/foo')
284 whatsnew/2.7 1657 :: ParseResult(scheme='http', netloc='[1080::8:800:200C:417A]',

File diff suppressed because one or more lines are too long