[issue17047] Fix double double words words

2013-03-15 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 4b28a6a3eda6 by Terry Jan Reedy in branch '3.2':
Issue #17047: Add news entry
http://hg.python.org/cpython/rev/4b28a6a3eda6

New changeset 937989570b42 by Terry Jan Reedy in branch '3.3':
Merge with 3.2: issue #17047 news entry
http://hg.python.org/cpython/rev/937989570b42

New changeset f0a3c2006adb by Terry Jan Reedy in branch 'default':
Merge with 3.2: closes issue #17047
http://hg.python.org/cpython/rev/f0a3c2006adb

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-03-15 Thread Terry J. Reedy

Changes by Terry J. Reedy tjre...@udel.edu:


--
resolution:  - fixed
stage: patch review - committed/rejected
status: open - closed
type: enhancement - behavior

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-03-15 Thread Terry J. Reedy

Changes by Terry J. Reedy tjre...@udel.edu:


--
assignee: docs@python - terry.reedy

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-03-12 Thread Ezio Melotti

Ezio Melotti added the comment:

The files in Modules/_ctypes/libffi/* shouldn't have been changed, but it 
probably doesn't matter much.  You also got the wrong issue id in Misc/NEWS 
(c162e2ff15bd).

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-03-12 Thread Terry J. Reedy

Terry J. Reedy added the comment:

I should have made separate new in 3.3 and new in 3.4 patches to begin with. 
This suggests that we need to recheck with each version. Serhiy and Mathew, 
could you post your search re's or scripts to use again on occasion?

I unlinked the 2.7 news notice, rev82624, misdirected to 14707
 Documentation
 -
 
+- Issue #14707: remove doubled words in docs and docstrings
+  reported by Serhiy Storchaka and Matthew Barnett.
+
 - Issue #16406: combine the pages for uploading and registering to PyPI.
 
 - Issue #16403: Document how distutils uses the maintainer field in

I am unable to properly add the 2 line NEWS note to 3.2 (or 3.3) as explained 
in a response on the python-checkins list. The whole file is deleted and added 
back with three extra lines (I presume they are added), or even with just one 
blank line added, in a monster 319kb patch. If someone wants to add a corrected 
version of the above for 3.2,3,4 on *nix, please go ahead.

Ezio, I do not understand your comment. The only change that looks even 
possibly wrong is 'that that' to 'that', and I am pretty sure I checked the 
context.

--
assignee: terry.reedy - docs@python

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-03-12 Thread Ezio Melotti

Ezio Melotti added the comment:

AFAIK libffi is maintained externally, so as soon as it gets updated your 
changes will simply get lost (see #17192).  I replied on your python-checkins 
email.  If you still have problems I can add the NEWS entry on 3.x.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-03-12 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

 Serhiy and Mathew, could you post your search re's or scripts to use again on 
 occasion?

For example:

  find * -type f -name '*.[ch]' -exec egrep -n '\b([a-zA-Z]+) \1\b' '{}' + | 
grep -v 'long long' | egrep --color '\b([a-zA-Z]+) \1\b'
  find * -type f -name '*.py' -exec egrep -n --color '\b([a-zA-Z]+) \1\b' '{}' +

And similar one-time one-liners for *.rst, *.txt, etc.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-03-12 Thread Terry J. Reedy

Terry J. Reedy added the comment:

I emailed the libffi subpatch to libffi-discuss.
Please add the 3.x news entry if you can get to it before I am able.
Then this issue can be closed, though the problem will obviously recur without 
an automatic check.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-03-11 Thread Roundup Robot

Roundup Robot added the comment:

New changeset 1ecb712fcf22 by Terry Jan Reedy in branch '2.7':
Issue #17047: removed doubled words in Doc/*, Mac/*, and Tool/*
http://hg.python.org/cpython/rev/1ecb712fcf22

New changeset e37647470fcf by Terry Jan Reedy in branch '3.2':
Issue #17047: removed doubled words in Doc/*, Mac/*, and Tool/*
http://hg.python.org/cpython/rev/e37647470fcf

New changeset 629322a13b53 by Terry Jan Reedy in branch '3.3':
Merge with 3.2: Issue #17047: removed doubled words in Doc/*,
http://hg.python.org/cpython/rev/629322a13b53

New changeset c187c145b4c4 by Terry Jan Reedy in branch 'default':
Merge with 3.3: Issue #17047: removed doubled words in Doc/*,
http://hg.python.org/cpython/rev/c187c145b4c4

--
nosy: +python-dev

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-03-11 Thread Terry J. Reedy

Terry J. Reedy added the comment:

Tools/gdb/libpython.py and some other doubles were fixed by rev81772 on the 
same day this issue was opened. I suspect that the copy had not been updated.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-03-11 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

Thank you, Terry.

--
assignee: docs@python - terry.reedy

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-03-11 Thread Roundup Robot

Roundup Robot added the comment:

New changeset e145dddb9d93 by Terry Jan Reedy in branch '2.7':
Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*,
http://hg.python.org/cpython/rev/e145dddb9d93

New changeset e9ba9f21a828 by Terry Jan Reedy in branch '3.2':
Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*,
http://hg.python.org/cpython/rev/e9ba9f21a828

New changeset a42195046e39 by Terry Jan Reedy in branch '3.3':
Merge 3.2, Issue #17047: remove doubled words found in 2.7 to 3.4
http://hg.python.org/cpython/rev/a42195046e39

New changeset 4bd13f45d3a2 by Terry Jan Reedy in branch 'default':
Merge 3.3, issue #17047: remove doubled words found in 2.7 to 3.4
http://hg.python.org/cpython/rev/4bd13f45d3a2

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-03-11 Thread Roundup Robot

Roundup Robot added the comment:

New changeset cd0191a9b5c9 by Terry Jan Reedy in branch '2.7':
Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*,
http://hg.python.org/cpython/rev/cd0191a9b5c9

New changeset 3f5f961262ec by Terry Jan Reedy in branch '3.2':
Issue #17047: remove doubled words found in 2.7 to 3.4 Lib/*,
http://hg.python.org/cpython/rev/3f5f961262ec

New changeset 0547f89aa620 by Terry Jan Reedy in branch '3.3':
Merge 3.2, issue #17047: remove doubled words found in 2.7 to
http://hg.python.org/cpython/rev/0547f89aa620

New changeset 01aa93888917 by Terry Jan Reedy in branch 'default':
Merge 3.3, issue #17047: remove doubled words found in 2.7 to
http://hg.python.org/cpython/rev/01aa93888917

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-03-11 Thread Roundup Robot

Roundup Robot added the comment:

New changeset e9ada209b67f by Terry Jan Reedy in branch '3.3':
Issue #17047: remove doubled words added in 3.3
http://hg.python.org/cpython/rev/e9ada209b67f

New changeset 908d45fdbecd by Terry Jan Reedy in branch 'default':
Merge with 3.3, issue #17047: remove doubled words added in 3.3,
http://hg.python.org/cpython/rev/908d45fdbecd

New changeset 0a26a8b13193 by Terry Jan Reedy in branch 'default':
Issue #17047: remove doubled words added in 3.4,
http://hg.python.org/cpython/rev/0a26a8b13193

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-02-17 Thread Serhiy Storchaka

Changes by Serhiy Storchaka storch...@gmail.com:


--
stage: needs patch - patch review

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-02-08 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

 I cannot find python-gdb.py.

This is a copy of Tools/gdb/libpython.py.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-02-07 Thread Terry J. Reedy

Terry J. Reedy added the comment:

Lib/tkinter/tix.py:1920
 Val may be: auto -- the width of the column is set the
 the widest cell in the column; a valid Tk screen distance

I believe 'the the' should be 'to the width of the'

Lib/tkinter/tix.py:1944
 Val may be: auto -- the height of the row  is  set  the
 the highest cell in the row; a valid Tk screen distance

Ditto for heigth instead of width.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-02-07 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

Terry, do you want to provide a patch?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-02-07 Thread Terry J. Reedy

Terry J. Reedy added the comment:

I am working on patch(es) now, against 3.2. But to make 2.7.4/3.2.4, I'd like 
you to apply, as I am not currently set up to do so properly.
I may do separate patches for doc, lib, module, and others, so none is 
overwhelming.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-02-07 Thread Terry J. Reedy

Terry J. Reedy added the comment:

First batch for Lib/*. Separate 3.2 and 2.7 files as the later required 
deletion of concurrent patch and adjustment of tix and turtle paths.

--
keywords: +patch
Added file: http://bugs.python.org/file28994/Lib14707-27.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-02-07 Thread Terry J. Reedy

Terry J. Reedy added the comment:

These of course do not contain patches for new dups introduced in 3.3. I kept a 
record and will later make a separate patch for those. (I hope before 3.3.1).

--
Added file: http://bugs.python.org/file28995/Lib14707-32.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-02-07 Thread Terry J. Reedy

Terry J. Reedy added the comment:

C module files. I cannot find python-gdb.py.

--
Added file: http://bugs.python.org/file28996/Mod14707-27.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-02-07 Thread Terry J. Reedy

Changes by Terry J. Reedy tjre...@udel.edu:


Added file: http://bugs.python.org/file28997/Mod14707-32.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-02-07 Thread Terry J. Reedy

Terry J. Reedy added the comment:

A majority of doc glitches listed here are new in 3.3. I believe someone make a 
similar de-double patch some time ago. I put the other 2.7/3.2 fixes here so 
this is it for those two versions.

--
Added file: http://bugs.python.org/file28998/Doc17047-27.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-02-07 Thread Terry J. Reedy

Changes by Terry J. Reedy tjre...@udel.edu:


Added file: http://bugs.python.org/file28999/Doc17047-32.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-02-07 Thread Terry J. Reedy

Terry J. Reedy added the comment:

This is for 3.3 and 3.4. It is against tip, but should apply to 3.3 since the 
lines changed were as reported here for 3.3.

--
Added file: http://bugs.python.org/file29000/Issue17047-34.diff

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-02-06 Thread Matthew Barnett

Matthew Barnett added the comment:

These are the ones that I think are wrong:

Doc/c-api/long.rst:206

   Return a C :c:type:`size_t` representation of of *pylong*.  *pylong* must be

Doc/c-api/long.rst:218

   Return a C :c:type:`unsigned PY_LONG_LONG` representation of of *pylong*.

Doc/library/email.policy.rst:330

  line breaks and and any (RFC invalid) binary data it may contain.

Doc/library/ipaddress.rst:395

  These attributes are true for the network as a whole if they are true
  true for both the network address and the broadcast address

Doc/library/ipaddress.rst:454

  ``True`` if this network is partly or wholly contained in *other* or
  or *other* is wholly contained in this network.

Doc/library/ipaddress.rst:584

  These attribute is true for the network as a whole if it is true
  true for both the network address and the broadcast address

Doc/library/ssl.rst:826

   The *server_name_callback* function must return ``None`` to allow the
   the TLS negotiation to continue.  If a TLS failure is required, a constant

Doc/library/stdtypes.rst:2640

  Cast 1D/unsigned char to to 2D/unsigned long::

Doc/library/unittest.mock.rst:1011

attributes that your production code creates at runtime. It is off by by

Doc/library/xml.dom.rst:359

   children, returning *newChild*. If the node was already in
   in the tree, it is removed first.

Doc/whatsnew/3.3.rst:1539

New attribute attribute :data:`multiprocessing.Process.sentinel` allows a

Include/pyport.h:884

 * also also takes care of Apple's universal builds.

Lib/argparse.py:1143

- encoding -- The file's encoding. Accepts the same values as the
the builtin open() function.

Lib/ftplib.py:468

  callback: An optional single parameter callable that is called on
on each block of data after it is sent.  [default: None]

Lib/ftplib.py:490

  callback: An optional single parameter callable that is called on
on each line after it is sent.  [default: None]

Lib/turtle.py:859

Thus stops execution of turtle graphics script. Main purpose: use in
in the Demo-Viewer turtle.Demo.py.

Lib/_pyio.py:306

Change the stream position to byte offset offset. offset is

[It's referring to the byte-offset parameter called offset; the parameter is 
actually called pos.]

Lib/concurrent/futures/_base.py:520

fn: A callable that will take take as many arguments as there are

Lib/distutils/command/install.py:266

raise DistutilsOptionError(can't combine user with with prefix/

Lib/distutils/tests/test_install.py:168

# can't combine user with with prefix/exec_prefix/home or

Lib/email/policy.py:26

The API extensions enabled by this this policy are currently provisional.

Lib/email/_encoded_words.py:17

# to to the CTE tables, but YAGNI for now.  'q' is Quoted Printable, 'b' is

Lib/email/_header_value_parser.py:1866

We allow anything except the excluded characters, but but if we find any

Lib/email/mime/text.py:29

# If no _charset was specified, check to see see if there are non-ascii

Lib/idlelib/extend.txt:57

Here is a complete example example:

Lib/idlelib/extend.txt:75

used to to configure the loading of extensions and to establish key (or, more

Lib/idlelib/rpc.py:4

connect to the Idle process, which listens for the connection.  Since Idle has
has only one client per server, this was not a limitation.

Lib/lib2to3/pgen2/grammar.py:23

Pgen parsing tables tables conversion class.

Lib/lib2to3/pgen2/grammar.py:48

 states, each state is is a list of arcs, and each

Lib/msilib/__init__.py:327

Add a file to the current component of the directory, starting a new 
one
one if there is no current component. By default, the file name in the 
source

Lib/test/test_decimal.py:4495

# Do operations and check that it didn't change change internal objects.

Lib/test/test_socket.py:845

# Try udp, but don't barf it it doesn't exist

[Should be if it.]

Lib/tkinter/tix.py:1920

 Val may be: auto -- the width of the column is set the
 the widest cell in the column; a valid Tk screen distance

Lib/tkinter/tix.py:1944

 Val may be: auto -- the height of the row  is  set  the
 the highest cell in the row; a valid Tk screen distance

Lib/unittest/mock.py:1447

attributes that your production code creates at runtime. It is off by by

Modules/ossaudiodev.c:233

   SNDCTL_DSP_{SETFMT,CHANNELS,SPEED} -- that that are called from C

Modules/_heapqmodule.c:91

/* The leaf at pos is empty now.  Put newitem there, and and bubble

Modules/_heapqmodule.c:431

/* The leaf at pos is empty now.  Put newitem there, and and bubble

Modules/expat/xmltok.c:1587

   way this can fail to be big-endian UTF-16 if it it's an

Modules/zlib/deflate.c:160

 * IN  assertion: all 

[issue17047] Fix double double words words

2013-02-02 Thread Terry J. Reedy

Terry J. Reedy added the comment:

These are correct as they are:

Lib/tkinter/tix.py:149:Locates a bitmap file of the name name.xpm or 
name in one of the
Lib/tkinter/tix.py:160:Locates an image file of the name name.xpm, 
name.xbm or name.ppm

Modules/_io/iobase.c:79:Change the stream position to byte offset offset. 
offset is\n
I believe the 2nd and 3rd 'offset' are argument names, which would be 
specially marked in .rst

Modules/socketmodule.c:3547:   ensures that that doesn't happen. */
Modules/binascii.c:41:** I have attempted to break with this tradition, but I 
guess that that
Doc/c-api/intro.rst:436::c:func:`sum_sequence` example above.  It so happens 
that that example doesn't
'that that' is awkward, but the two 'that's are different

Modules/posixmodule.c:9747:Return the value of extended attribute attribute on 
path.\n\
Modules/posixmodule.c:9825:Set extended attribute attribute on path to value.\n\
Modules/posixmodule.c:9890:Remove extended attribute attribute on path.\n\
PC/msvcrtmodule.c:133:Create a C runtime file descriptor from the file handle 
handle. The\n\
much like byte offset offset

Doc/c-api/long.rst:206:   Return a C :c:type:`size_t` representation of of 
*pylong*.  *pylong* must be
the re missed the '.'.

False doubles from typos (which should also be changed):
Lib/test/test_socket.py:845:# Try udp, but don't barf it it doesn't 
exist
/it it/if it/

Éric, I am puzzled by your comment. The only two 'the the's in Serhiy's report 
(that Firefox finds) are

python-gdb.py:1466:'''Is this frame collect within the the 
garbage-collector?'''
I suspect 'collect' should be 'collected', but I cannot tell without a link. I 
am sure 'the the' is wrong.

Misc/HISTORY:3055:  environment after Distutils set it.  Instead, have 
Distutils set the the

and both look like wrong doubles and not 'that the'.

--
nosy: +terry.reedy

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-01-27 Thread Serhiy Storchaka

New submission from Serhiy Storchaka:

In additional to changeset 07488c3c85f1, here are yet some possible word 
duplications:

Lib/_pyio.py:306:Change the stream position to byte offset offset. 
offset is
Lib/concurrent/futures/_base.py:520:fn: A callable that will take 
take as many arguments as there are
Lib/tkinter/__init__.py:3116:have the same start and and end line as 
the parent widget, but
Lib/tkinter/tix.py:149:Locates a bitmap file of the name name.xpm or 
name in one of the
Lib/tkinter/tix.py:160:Locates an image file of the name name.xpm, 
name.xbm or name.ppm
Lib/lib2to3/pgen2/grammar.py:23:Pgen parsing tables tables conversion 
class.
Lib/lib2to3/pgen2/grammar.py:48: states, each state is is a 
list of arcs, and each
Lib/email/_header_value_parser.py:1866:We allow anything except the 
excluded characters, but but if we find any
Lib/email/_encoded_words.py:17:# to to the CTE tables, but YAGNI for now.  'q' 
is Quoted Printable, 'b' is
Lib/email/mime/text.py:29:# If no _charset was specified, check to see 
see if there are non-ascii
Lib/email/policy.py:26:The API extensions enabled by this this policy are 
currently provisional.
Lib/unittest/mock.py:1420:attributes that your production code creates at 
runtime. It is off by by
Lib/test/test_socket.py:845:# Try udp, but don't barf it it doesn't 
exist
Lib/test/test_descrtut.py:322:getx() and and setx():
Lib/test/test_decimal.py:4495:# Do operations and check that it didn't 
change change internal objects.
Lib/distutils/command/install.py:266:raise 
DistutilsOptionError(can't combine user with with prefix/
Lib/distutils/tests/test_install.py:168:# can't combine user with with 
prefix/exec_prefix/home or
python-gdb.py:1466:'''Is this frame collect within the the 
garbage-collector?'''
Include/pyport.h:884: * also also takes care of Apple's universal builds.
Modules/_io/iobase.c:79:Change the stream position to byte offset offset. 
offset is\n
Modules/_heapqmodule.c:91:/* The leaf at pos is empty now.  Put newitem 
there, and and bubble
Modules/_heapqmodule.c:431:/* The leaf at pos is empty now.  Put newitem 
there, and and bubble
Modules/socketmodule.c:3547:   ensures that that doesn't happen. */
Modules/binascii.c:41:** I have attempted to break with this tradition, but I 
guess that that
Modules/posixmodule.c:9747:Return the value of extended attribute attribute on 
path.\n\
Modules/posixmodule.c:9825:Set extended attribute attribute on path to value.\n\
Modules/posixmodule.c:9890:Remove extended attribute attribute on path.\n\
PC/msvcrtmodule.c:133:Create a C runtime file descriptor from the file handle 
handle. The\n\
Doc/c-api/intro.rst:436::c:func:`sum_sequence` example above.  It so happens 
that that example doesn't
Doc/c-api/long.rst:206:   Return a C :c:type:`size_t` representation of of 
*pylong*.  *pylong* must be
Doc/c-api/long.rst:218:   Return a C :c:type:`unsigned PY_LONG_LONG` 
representation of of *pylong*.
Doc/library/stdtypes.rst:2640:  Cast 1D/unsigned char to to 2D/unsigned 
long::
Doc/library/email.policy.rst:330:  line breaks and and any (RFC invalid) 
binary data it may contain.
Doc/library/unittest.mock.rst:991:attributes that your production code 
creates at runtime. It is off by by
Doc/whatsnew/3.3.rst:1539:New attribute attribute 
:data:`multiprocessing.Process.sentinel` allows a
Lib/idlelib/extend.txt:57:Here is a complete example example:
Lib/idlelib/extend.txt:75:used to to configure the loading of extensions and to 
establish key (or, more

--
assignee: docs@python
components: Documentation
keywords: easy
messages: 180747
nosy: docs@python, ezio.melotti, serhiy.storchaka
priority: normal
severity: normal
stage: needs patch
status: open
title: Fix double double words words
type: enhancement
versions: Python 2.7, Python 3.2, Python 3.3, Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-01-27 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

And yet some:

Mac/README:40:  Create a universal binary build of of Python. This can be used 
with both
Misc/HISTORY:781:  some also support accepting an open file descriptor in place 
of of a path
Misc/HISTORY:1415:  trying to set a non-binary value as a comment is now now 
raised at the time
Misc/HISTORY:3055:  environment after Distutils set it.  Instead, have 
Distutils set the the
Tools/pybench/README:6: Extendable suite of of low-level benchmarks for 
measuring

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-01-27 Thread Éric Araujo

Éric Araujo added the comment:

Note that sometimes duplicates are actually typos: in 
http://hg.python.org/cpython/rev/07488c3c85f1/#l4.1 for exemple I think the 
intent was to write “that the” instead of “the the”.

--
nosy: +eric.araujo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue17047] Fix double double words words

2013-01-27 Thread Brian Curtin

Changes by Brian Curtin br...@python.org:


--
priority: normal - low

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue17047
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com