[issue17409] resource.setrlimit doesn't respect -1

2013-03-21 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://

[issue17517] StringIO() does not behave like cStringIO() when given an array object

2013-03-21 Thread Santoso Wijaya
New submission from Santoso Wijaya: Python 2.7.3 (default, Sep 26 2012, 21:51:14) [GCC 4.7.2] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> import array, cStringIO, StringIO >>> a = array.array('B', [1,2,3]) >>> cStringIO.StringIO(a).getvalue() '\x01\x02\x0

[issue17517] StringIO() does not behave like cStringIO() when given an array object

2013-03-21 Thread Santoso Wijaya
Changes by Santoso Wijaya : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue1154351] add get_current_dir_name() to os module

2013-03-21 Thread Berker Peksag
Changes by Berker Peksag : -- versions: +Python 3.4 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue17487] wave.Wave_read.getparams should be more user friendly

2013-03-21 Thread Berker Peksag
Berker Peksag added the comment: Should the documentation of the wave module be updated to match this change? See issue 16808 for example. The current wave.Wave_read.getparams documentation says: "Returns a tuple (nchannels, sampwidth, framerate, nframes, comptype, compname), equivalent to ou

[issue17517] StringIO() does not behave like cStringIO() when given an array object

2013-03-21 Thread R. David Murray
R. David Murray added the comment: That is unfortunate, but I suspect it is not something that we can change, since it would be a change in behavior (StringIO.StringIO doing an str on its input) that existing code may be depending on. In Python3, StringIO doesn't accept an array as input, an

[issue17487] wave.Wave_read.getparams should be more user friendly

2013-03-21 Thread R. David Murray
R. David Murray added the comment: It should. Here's the patch I am prepared to commit once Claudio's contributor for confirmation occurs. -- Added file: http://bugs.python.org/file29542/wave_with_docs.patch ___ Python tracker

[issue17514] Add the license to argparse.py

2013-03-21 Thread Berker Peksag
Changes by Berker Peksag : -- versions: -Python 2.6, Python 3.1, Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue17516] Dead code should be removed

2013-03-21 Thread Raymond Hettinger
Raymond Hettinger added the comment: The code in test_peepholer should be removed. That code isn't run directly. Instead, it is tested for a correct disassembly. -- nosy: +rhettinger ___ Python tracker _

[issue17512] backport of the _sysconfigdata.py module (issue 13150) breaks the build on darwin

2013-03-21 Thread Matthias Klose
Matthias Klose added the comment: here's the backport, tested on Linux only. sorry, can't test this on MacOSX before Sunday. -- Added file: http://bugs.python.org/file29543/backport.diff ___ Python tracker ___

[issue17512] backport of the _sysconfigdata.py module (issue 13150) breaks the build on darwin

2013-03-21 Thread Ned Deily
Changes by Ned Deily : -- nosy: +ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue17512] backport of the _sysconfigdata.py module (issue 13150) breaks the build on darwin

2013-03-21 Thread Ronald Oussoren
Ronald Oussoren added the comment: Reverting the backport would also fix the breakage. Is the addition of _sysconfigdata not a new feature? It changes the place where sysconfig (and distutils sysconfig?) looks for configuration data, and hence breaks all instructions that mention that you can

<    1   2