[Python-Dev] Summary of Python tracker Issues

2014-05-02 Thread Python tracker

ACTIVITY SUMMARY (2014-04-25 - 2014-05-02)
Python tracker at http://bugs.python.org/

To view or respond to any of the issues listed below, click on the issue.
Do NOT respond to this message.

Issues counts and deltas:
  open4605 ( +5)
  closed 28582 (+61)
  total  33187 (+66)

Open issues with patches: 2109 


Issues opened (49)
==

#21350: bug in file.writelines accepting buffers
http://bugs.python.org/issue21350  opened by bdkearns

#21352: improve documentation indexing
http://bugs.python.org/issue21352  opened by bgailer

#21354: PyCFunction_New no longer exposed by python DLL breaking bdist
http://bugs.python.org/issue21354  opened by mhammond

#21356: Support LibreSSL (instead of OpenSSL): make RAND_egd optional
http://bugs.python.org/issue21356  opened by Edd.Barrett

#21357: Increase filecmp test coverage from 63% to 76%
http://bugs.python.org/issue21357  opened by diana

#21358: Augmented assignment doc: clarify 'only evaluated once'
http://bugs.python.org/issue21358  opened by terry.reedy

#21359: IDLE Redo command accelerator acts as Undo with current OS X C
http://bugs.python.org/issue21359  opened by ned.deily

#21360: mailbox.Maildir should ignore files named with a leading dot
http://bugs.python.org/issue21360  opened by liw

#21362: concurrent.futures does not validate that max_workers is prope
http://bugs.python.org/issue21362  opened by Claudiu.Popa

#21363: io.TextIOWrapper always closes wrapped files
http://bugs.python.org/issue21363  opened by aronacher

#21364: Documentation Recommends Broken Pattern
http://bugs.python.org/issue21364  opened by aronacher

#21365: asyncio.Task reference misses the most important fact about it
http://bugs.python.org/issue21365  opened by pfalcon

#21366: Document that return in finally overwrites prev value
http://bugs.python.org/issue21366  opened by brandjon

#21367: multiprocessing.JoinableQueue requires new kwarg
http://bugs.python.org/issue21367  opened by lee.clemens

#21368: Check for systemd locale on startup if current locale is set t
http://bugs.python.org/issue21368  opened by ncoghlan

#21370: segfault from simple traceback.format_exc call
http://bugs.python.org/issue21370  opened by John.Rusnak

#21372: multiprocessing.util.register_after_fork inconsistency
http://bugs.python.org/issue21372  opened by schlamar

#21373: robotparser: Automatically call modified function in read()
http://bugs.python.org/issue21373  opened by mlorant

#21375: Fix and test overflow behavior in the C version of heapq
http://bugs.python.org/issue21375  opened by rhettinger

#21376: asyncio docs refer to wrong TimeoutError
http://bugs.python.org/issue21376  opened by qmega

#21381: Python 3.4+ interpreter built on/with OS X 10.7 deployment tar
http://bugs.python.org/issue21381  opened by Christian.Tismer

#21382: Signal module doesnt raises ValueError Exception
http://bugs.python.org/issue21382  opened by rsevcan

#21383: "make touch" fails when the build directory is not the source 
http://bugs.python.org/issue21383  opened by ned.deily

#21384: Windows: Make handle non inheritable by default
http://bugs.python.org/issue21384  opened by haypo

#21385: Compiling modified AST crashes on debug build unless linenumbe
http://bugs.python.org/issue21385  opened by Ztane

#21386: ipaddress.IPv4Address.is_global not implemented
http://bugs.python.org/issue21386  opened by rluethi

#21387: Memory leaks when embedded interpreter is reinitialized
http://bugs.python.org/issue21387  opened by Evgeniy.Stepanov

#21389: The repr of BoundMethod objects sometimes incorrectly identifi
http://bugs.python.org/issue21389  opened by Steven.Barker

#21390: readline: setlocale() returns NULL on Android
http://bugs.python.org/issue21390  opened by lizhenhua.dev

#21391: PATCH: using the abspath shortcut in Lib/shutil
http://bugs.python.org/issue21391  opened by Yinon

#21392: Python on Cygwin: subprocess.call BlockingIOError: [Errno 11] 
http://bugs.python.org/issue21392  opened by dellair.jie

#21393: Python/random.c: close hCryptProv at exit
http://bugs.python.org/issue21393  opened by haypo

#21396: Python io implementation doesn't flush with write_through=True
http://bugs.python.org/issue21396  opened by akira

#21397: tempfile.py: Fix grammar in docstring, comment typos
http://bugs.python.org/issue21397  opened by modocache

#21398: LC_CTYPE=C:  pydoc leaves terminal in an unusable state
http://bugs.python.org/issue21398  opened by skrah

#21400: Code coverage documentation is out-of-date.
http://bugs.python.org/issue21400  opened by matrixise

#21401: python2 -3 does not warn about str/unicode to bytes conversion
http://bugs.python.org/issue21401  opened by Joshua.J.Cogliati

#21402: tkinter.ttk._val_or_dict assumes tkinter._default_root exists
http://bugs.python.org/issue21402  opened by Zero

#21403: cElementTree's Element creation handles attrib argument differ
http://bugs.python.org/issue21403  opened by santa4nt

#21404: Compression level for tarfile/zipfil

Re: [Python-Dev] [Python-checkins] devguide: Fix broken link to Skip's optimizer paper, update bug link

2014-05-02 Thread Zachary Ware
On Fri, May 2, 2014 at 3:02 PM, zach.ware  wrote:
> http://hg.python.org/devguide/rev/375b0b0b186b
> changeset:   696:375b0b0b186b
> user:Zachary Ware 
> date:Fri May 02 14:44:20 2014 -0500
> summary:
>   Fix broken link to Skip's optimizer paper, update bug link
>
> files:
>   compiler.rst |  4 ++--
>   1 files changed, 2 insertions(+), 2 deletions(-)
>
>
> diff --git a/compiler.rst b/compiler.rst
> --- a/compiler.rst
> +++ b/compiler.rst
> @@ -553,10 +553,10 @@
>  .. _SPARK: http://pages.cpsc.ucalgary.ca/~aycock/spark/
>
>  .. [#skip-peephole] Skip Montanaro's Peephole Optimizer Paper
> -   
> (http://www.python.org/workshops/1998-11/proceedings/papers/montanaro/montanaro.html)
> +   (http://www.smontanaro.net/python/spam7/optimizer.html)

Is this a good link or is there a 'better' one available?  This was
the first result of a Google search for "skip montanaro peephole
optimizer" and seems to be straight from the source, so I went with it
:)

Regards,
-- 
Zach
___
Python-Dev mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com


Re: [Python-Dev] [Python-checkins] devguide: Fix broken link to Skip's optimizer paper, update bug link

2014-05-02 Thread Skip Montanaro
On Fri, May 2, 2014 at 3:06 PM, Zachary Ware
 wrote:
>> -   
>> (http://www.python.org/workshops/1998-11/proceedings/papers/montanaro/montanaro.html)
>> +   (http://www.smontanaro.net/python/spam7/optimizer.html)
>
> Is this a good link or is there a 'better' one available?

Zach,

That's as a good a link as I know of. (Lot of water under the bridge
since then!)

Skip
___
Python-Dev mailing list
[email protected]
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com