xlwings v0.2.3 released

2014-10-17 Thread Felix Zumstein
I am happy to announce the release of xlwings v0.2.3: Lot of bug fixes and new features like: - Sheet.add(), Sheet.count(), Sheet.all(), Sheet(1).autofit() - Range('A1').number_format(), Range((1,1)).get_address() and more, see the Release Notes here: http://docs.xlwings.org/whatsnew.html

2d color-bar map plot

2014-10-17 Thread Dhananjay
Dear all, I am bit new to the python/pyplot. This might be simple, but I guess I am missing something here. I have data file as follows: 2.1576318858 -1.8651195165 4.2333428278 2.1681875208 -1.9229968780 4.1989176884 2.3387636157 -2.0376253255 2.4460899122 2.1696565965 -2.6186941271 4.4172007912

Convert Qstring to string in windows

2014-10-17 Thread C@rlos
I have been tryed to convert a Qstring text to string on python, in linux that work fine but in windows when qstring contine á,é,í,ó,ú the converted text is not correct, contine extranger characters, this qstring text is an url from qdialogtext. in linux i do for this way:

[no subject]

2014-10-17 Thread Dhananjay
Hello, This might be simple, but I guess I am missing something here. I have data file as follows: 2.1576318858 -1.8651195165 4.2333428278 2.1681875208 -1.9229968780 4.1989176884 2.3387636157 -2.0376253255 2.4460899122 2.1696565965 -2.6186941271 4.4172007912 2.0848862071 -2.1708981985

Help in using grako for parsing

2014-10-17 Thread varun7rs
Hello, I am trying to parse a file which ahs the below content. I tried using the split function but that wasn't a good programming practice. I had to use it repeatedly to split the line and then read my data. I thought of doing it in a better way which is when I came across grako. But I have

Re: Help in using grako for parsing

2014-10-17 Thread Peter Otten
varun...@gmail.com wrote: Hello, I am trying to parse a file which ahs the below content. I tried using the split function but that wasn't a good programming practice. I had to use it repeatedly to split the line and then read my data. I thought of doing it in a better way which is when I

Re: Help in using grako for parsing

2014-10-17 Thread varun7rs
I'm really sorry for not being clear. I shall explain things in detail from now onwards. Really sorry. The output I would like is RF schema=RF.xsd version= VNE requests request ID='0' virtualnodes virtualnode PhysicalNode_ID='1' Request_ID='0' VirtualNode_ID='0'/virtualnode PhysicalNode_ID='5'

Re: Help in using grako for parsing

2014-10-17 Thread varun7rs
Oh damn, it turned out really crappy. I could not format it properly -- https://mail.python.org/mailman/listinfo/python-list

windows log to event viewer

2014-10-17 Thread Arulnambi Nandagoban
Hello, I am trying to run a tcp server as a windows service. The project also includes an application layer protocol somewhat like CoAP and few soap calls to data base. There is some moment the code enter into exception during a soap method call. This exception is not viewed in Windows

Re: your mail

2014-10-17 Thread Cameron Simpson
On 17Oct2014 11:45, Dhananjay dhananjay.c.jo...@gmail.com wrote: This might be simple, but I guess I am missing something here. I have data file as follows: 2.1576318858 -1.8651195165 4.2333428278 2.1681875208 -1.9229968780 4.1989176884 2.3387636157 -2.0376253255 2.4460899122 2.1696565965

Re: Permissions on files installed by pip?

2014-10-17 Thread Jean-Michel Pichavant
- Original Message - From: Adam Funk a24...@ducksburg.com To: python-list@python.org Sent: Thursday, 16 October, 2014 9:29:46 PM Subject: Permissions on files installed by pip? I've been using the python-nltk package on Ubuntu, but I need ntlk 3.0 now. I used 'sudo aptitude purge

non-gobject based dbus library?

2014-10-17 Thread Tycho Andersen
Hi all, An application I maintain recently moved away from the gobject event loop to the tulip/trollius/asyncio event loop. However, we were using python-dbus, which internally uses the gobject event loop, as our main event loop. This worked nicely when we were gobject based, but now that we're

Re: 2d color-bar map plot

2014-10-17 Thread Peter Pearson
On Fri, 17 Oct 2014 14:28:13 +0800, Dhananjay wrote: [snip] xs = ys = zs = [] for line in fl1: line = line.split() xs.append(float(line[0])) ys.append(float(line[1])) zs.append(float(line[2])) print xs[0], ys[0], zs[0] The line xs = ys = zs = [] is almost surely not what

Re: your mail

2014-10-17 Thread Terry Reedy
On 10/17/2014 6:43 AM, Cameron Simpson wrote: On 17Oct2014 11:45, Dhananjay dhananjay.c.jo...@gmail.com wrote: 2.1576318858 -1.8651195165 4.2333428278 ... (total of 200 lines) Columns 1,2,3 corresponds to x,y,z axis data points. for line in open('flooding-psiphi.dat','r'): line

Write list to new column in existent csv

2014-10-17 Thread Tal Bar-Or
Hello Group, I am tryin to figure how to write a list i have as follows ['info', '19987→445 [SYN] Seq=0 Win=8192 Len=0 MSS=1460 WS=256 SACK_PERM=1\n', '445→19987 [SYN, ACK] Seq=0 Ack=1 Win=65535 Len=0 MSS=1460 WS=64 SACK_PERM=1\n', '19987→445 [ACK] Seq=1 Ack=1 Win=65536 Len=0\n',

Re: windows log to event viewer

2014-10-17 Thread Irmen de Jong
On 17-10-2014 11:59, Arulnambi Nandagoban wrote: Hello, I am trying to run a tcp server as a windows service. The project also includes an application layer protocol somewhat like CoAP and few soap calls to data base. There is some moment the code enter into exception during a

Re: Write list to new column in existent csv

2014-10-17 Thread Peter Otten
Tal Bar-Or wrote: I am tryin to figure how to write a list i have as follows To a a csv to for example the 3rd column , i am really got stacked here i tried few codes with csv.writerow() but didn't got it work ,will really appreciate if someone could help me with that Please advice Thanks

Re: 2d color-bar map plot

2014-10-17 Thread Mark Lawrence
On 17/10/2014 07:28, Dhananjay wrote: Dear all, I am bit new to the python/pyplot. This might be simple, but I guess I am missing something here. I doubt that you'll get detailed answers here so suggest you try https://lists.sourceforge.net/lists/listinfo/matplotlib-users which is also

Re: windows log to event viewer

2014-10-17 Thread Mark Lawrence
On 17/10/2014 10:59, Arulnambi Nandagoban wrote: Hello, I am trying to run a tcp server as a windows service. The project also includes an application layer protocol somewhat like CoAP and few soap calls to data base. There is some moment the code enter into exception during a soap method

Processing xml for output with cElementTree

2014-10-17 Thread Joseph L. Casale
I am unfortunately unable to use lxml for a project and must resort to base only libraries to create several nested elements located directly under a root element. The caveat is the incremental writing and flushing of the nested elements as they are created. So assuming the structure is

Re: [Tutor] Convert Qstring to string in windows

2014-10-17 Thread eryksun
On Thu, Oct 16, 2014 at 10:21 AM, C@rlos cmfer...@estudiantes.uci.cu wrote: in linux i do for this way: pythonstringtext=qstringtext.text().toUtf8.data() and it return a python string correctly. pythonstringtext is a byte string that has to be decoded as UTF-8. Here's the 'mojibake' result

[issue22646] Set SMTPHandler's credentials through logging.config.dictConfig.

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3ba23c6f7986 by Vinay Sajip in branch '2.7': Issue #22646: Accept list as well as tuple to support initialisation via dictConfig(). https://hg.python.org/cpython/rev/3ba23c6f7986 New changeset d15708f13266 by Vinay Sajip in branch '3.4': Issue

[issue22653] Crash in insertdict

2014-10-17 Thread Georg Brandl
Georg Brandl added the comment: This is not a crash, but an abort, so it's not a security issue. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22653 ___

[issue13918] locale.atof documentation is missing func argument

2014-10-17 Thread Cédric Krier
Cédric Krier added the comment: So what about this patch? It adds a delocalize method while keeping the atof func parameter for backward compatibility. -- Added file: http://bugs.python.org/file36955/delocalize.patch ___ Python tracker

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill
Aaron Hill added the comment: Does anyone have any thoughts about throwing a warning for an unexpected minor revision? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18216 ___

[issue22656] `help` ignores `__doc__` of descriptors

2014-10-17 Thread Ram Rachum
New submission from Ram Rachum: The builtin `property` lets you specify a `doc` argument for your properties, which is great because then it shows up in `help`. So I figured that when I'm writing my own descriptor, I could set `__doc__` on it and have `help` use it. Not so, `help` ignores it.

[issue13918] locale.atof documentation is missing func argument

2014-10-17 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- assignee: docs@python - components: +Library (Lib) -Documentation stage: - patch review versions: +Python 3.5 -Python 2.7, Python 3.2, Python 3.3, Python 3.4 ___ Python tracker rep...@bugs.python.org

[issue13918] locale.atof documentation is missing func argument

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: The patch's approach looks reasonable to me. -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13918 ___

[issue22657] Bad link to packages specification in language reference 2.x sec 6.12

2014-10-17 Thread Douglas Naphas
New submission from Douglas Naphas: Section 6.12 of the Python 2.x language reference (https://docs.python.org/2/reference/simple_stmts.html#the-import-statement) has a link to The original specification for packages to http://www.python.org/doc/essays/packages.html, which is not found.

[issue22657] Bad link to packages specification in language reference 2.x sec 6.12

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset dae99db70336 by Benjamin Peterson in branch '2.7': remove link to the 'original package specification'; I doubt it's useful anymore (closes #22657) https://hg.python.org/cpython/rev/dae99db70336 -- nosy: +python-dev resolution: - fixed

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-10-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: If Python itself works correctly on a machine, it is a bug for a test to say that is it not, by failing. Should we change -response = self.request('/', method='get') to +response = self.request('/', method='gets') or +response =

[issue20221] #define hypot _hypot conflicts with existing definition

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 430aaeaa8087 by Zachary Ware in branch '2.7': Issue #20221: Removed conflicting (or circular) hypot definition https://hg.python.org/cpython/rev/430aaeaa8087 -- ___ Python tracker rep...@bugs.python.org

[issue20221] #define hypot _hypot conflicts with existing definition

2014-10-17 Thread Zachary Ware
Zachary Ware added the comment: It grafted very easily, so it turns out to be yes :) -- versions: +Python 2.7 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20221 ___

[issue22186] Typos in .py files

2014-10-17 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- nosy: +berker.peksag stage: - commit review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22186 ___

[issue22656] `help` ignores `__doc__` of descriptors

2014-10-17 Thread R. David Murray
R. David Murray added the comment: You might find issue 5890 to be interesting reading. It's been long enough that I forget the details, but I think the short answer is yes, property is special cased. So probably what you want to do is subclass property. Given the knock-on issue that fix

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-10-17 Thread R. David Murray
R. David Murray added the comment: It should be 'custom', since that will actually test case sensitivity, which 'gets' would not. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20155 ___

[issue22658] IMAP4 Example lacking host information

2014-10-17 Thread James Goodwin
New submission from James Goodwin: The IMAP4 Example for Python 3.4 (Section 21.15.2) does not show the appropriate host information for the example to work. Suggested fix would be to change the line M = imaplib.IMAP4() to M = imaplib.IMAP4('localhost') This will bring the example inline

[issue22658] IMAP4 Example lacking host information

2014-10-17 Thread R. David Murray
R. David Murray added the comment: I think this is actually a bug, rather than a doc bug. See issue 18540. if you agree, we'll close this as a duplicate of that one. -- nosy: +r.david.murray ___ Python tracker rep...@bugs.python.org

[issue21417] Compression level for zipfile

2014-10-17 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- nosy: +berker.peksag ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21417 ___ ___

[issue22658] IMAP4 Example lacking host information

2014-10-17 Thread James Goodwin
James Goodwin added the comment: I do see that. I agree that this is a duplicate of that one. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22658 ___

[issue22659] SyntaxError in the configure_ctypes

2014-10-17 Thread Billy
New submission from Billy: Hi all, I have a issue with the cross-compilation, here I let it: File ../src/setup.py, line 1849 exec(f.read(), globals(), fficonfig) SyntaxError: unqualified exec is not allowed in function 'configure_ctypes' it contains a nested function with free variables

[issue16802] fileno argument to socket.socket() undocumented

2014-10-17 Thread Berker Peksag
Berker Peksag added the comment: The actual signature is now socket.socket(family=AF_INET, type=SOCK_STREAM, proto=0, fileno=None) but, the fileno argument still needs to be documented. -- nosy: +berker.peksag stage: needs patch - patch review versions: +Python 3.5 -Python 3.2,

[issue22638] ssl module: the SSLv3 protocol is vulnerable (POODLE attack)

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset e971f3c57502 by Antoine Pitrou in branch 'default': Issue #22638: SSLv3 is now disabled throughout the standard library. https://hg.python.org/cpython/rev/e971f3c57502 -- nosy: +python-dev ___ Python

[issue22638] ssl module: the SSLv3 protocol is vulnerable (POODLE attack)

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: So, I've disabled SSLv3 in _create_stdlib_context() for the next feature release (3.5). By the time it is released, we can consider SSLv3 will be dead. Related news: - Opera doesn't disable SSLv3 yet, but implements custom countermeasures:

[issue22638] ssl module: the SSLv3 protocol is vulnerable (POODLE attack)

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: As for bugfix releases, I think we should take the time and consider what other software packages will decide. -- versions: -Python 3.1, Python 3.2, Python 3.5 ___ Python tracker rep...@bugs.python.org

[issue21112] 3.4 regression: unittest.expectedFailure no longer works on TestCase subclasses

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Berker, it looks like the 3.3 behaviour was buggy: TestTreatment isn't run at all! Instead, it should be run and consider failures as success. So your patch appears more correct than what 3.3 did. -- ___ Python

[issue22660] Review ssl docs for security recommendations

2014-10-17 Thread Antoine Pitrou
New submission from Antoine Pitrou: The current ssl documentation has a number of statements which may need updating, particularly wrt. SSLv3. -- assignee: docs@python components: Documentation messages: 229590 nosy: alex, christian.heimes, docs@python, dstufft, giampaolo.rodola,

[issue22656] `help` ignores `__doc__` of descriptors

2014-10-17 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- nosy: +ethan.furman ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22656 ___ ___ Python-bugs-list

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: The linked docs say: an unexpected minor revision number means that the file can be read but will not reveal its full contents, when parsed by a program that supports only smaller minor revision numbers. Unless there an important piece of contents that can be

[issue22658] IMAP4 Example lacking host information

2014-10-17 Thread R. David Murray
Changes by R. David Murray rdmur...@bitdance.com: -- resolution: - duplicate stage: - resolved status: open - closed superseder: - imaplib.IMAP4() ends with Name or service not known on Fedora 18 ___ Python tracker rep...@bugs.python.org

[issue16000] test_curses should use unittest

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset f598d0014d07 by Zachary Ware in branch '3.4': Issue #16000: Convert test_curses to use unittest https://hg.python.org/cpython/rev/f598d0014d07 New changeset b7b49f26a87b by Zachary Ware in branch 'default': Issue #16000: Convert test_curses to use

[issue16000] test_curses should use unittest

2014-10-17 Thread Zachary Ware
Changes by Zachary Ware zachary.w...@gmail.com: -- assignee: - zach.ware resolution: - fixed stage: patch review - resolved status: open - closed versions: +Python 3.5 -Python 3.3 ___ Python tracker rep...@bugs.python.org

[issue22644] Update Windows installers to OpenSSL 1.0.1j

2014-10-17 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- priority: normal - release blocker ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22644 ___ ___

[issue22644] Update Windows installers to OpenSSL 1.0.1j

2014-10-17 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- nosy: +benjamin.peterson, larry versions: +Python 2.7, Python 3.4, Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22644 ___

[issue21298] Cheese shop registration stopped working for me recently

2014-10-17 Thread Georg Brandl
Georg Brandl added the comment: Is this still a problem? If yes, I would contact the PyPI team directly, this tracker is not the right place for PyPI bugs. (It is unlikely to be a distutils bug.) -- nosy: +georg.brandl resolution: - third party status: open - pending

[issue16662] load_tests not invoked in package/__init__.py

2014-10-17 Thread Robert Collins
Robert Collins added the comment: Closing as the fix to the test suite is applied. -- resolution: - fixed status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16662 ___

[issue21298] Cheese shop registration stopped working for me recently

2014-10-17 Thread Thomas Levine
Thomas Levine added the comment: It has been working for me recently. Adding to your suggestion that it is probably PyPI: I didn't do anything in particular to fix this, and I think it is more likely that PyPI got fixed than that I upgraded Python (and thus distutils). -- status:

[issue17401] io.FileIO closefd parameter is not documented nor shown in repr

2014-10-17 Thread R. David Murray
R. David Murray added the comment: I think the information from the following line of the 'open' docs should be added to the doc patch: If a filename is given closefd has no effect and must be True (the default). Otherwise it looks fine to me. -- nosy: +r.david.murray

[issue22661] WinXP concerns

2014-10-17 Thread Tcll
New submission from Tcll: About a week ago I read you were also dropping support for WinXP. This will cause issues for me as I don't support newer Win (or should I say MS-RAT infested) OS's I use linux now, but I still use XP as a testing interface for Windows. (I will not install any newer

[issue21298] Cheese shop registration stopped working for me recently

2014-10-17 Thread Georg Brandl
Georg Brandl added the comment: OK, thanks for the feedback. -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21298 ___ ___

[issue22661] WinXP concerns

2014-10-17 Thread R. David Murray
R. David Murray added the comment: This is not an appropriate discussion for the bug tracker. python-dev would be the logical venue, but your apparent tone of voice isn't optimal for stimulating positive discussion, I'm afraid :) That said, we won't be dropping support for XP in 2.7, since

[issue22661] WinXP concerns

2014-10-17 Thread Tcll
Tcll added the comment: I'm sorry... I wasn't trying to sound negative... I deal with alot of stress from many developers in this area, so yea, you can see why I sound like that. but thanks for telling me about that with 2.7 :) though I was hoping to try out python3 in the future. =3=

[issue22661] WinXP concerns

2014-10-17 Thread R. David Murray
R. David Murray added the comment: Yeah, it wasn't so much negative, as...edgy? :) We can't really support what Microsoft doesn't support, since we use the Microsoft compilers. There is discussion about better support for alternate compilers, though, and if that eventuates *some* sort of

[issue22662] subprocess.Popen.communicate causing local tty terminal settings to change inconsistently

2014-10-17 Thread Kyle
New submission from Kyle: I'm not sure if this is a bash or Python issue. I'm trying to run a command on a remote server, using the subprocess module. I call ssh inside of subprocess.Popen(...).communicate(), like so: output = subprocess.Popen([/bin/env %s /usr/bin/ssh -ttt %s@%s -- %s; %

[issue22661] WinXP concerns

2014-10-17 Thread Tcll
Tcll added the comment: ah I see in that case, I work on my program for you guys as well :) it won't be finished any time soon, but what I'm working on is a recompiler specifically for this garbage of cross-platform support being hindered. so in the mean-time try to do what you can towards

[issue22656] `help` ignores `__doc__` of descriptors

2014-10-17 Thread Ethan Furman
Ethan Furman added the comment: Yeah, that was interesting. ;) I think there are two different, yet related, issues: - which __doc__ should help display? - how should __doc__ be inherited? The issue we should deal with here is the first, as what help displays does not have to follow the

[issue22644] Update Windows installers to OpenSSL 1.0.1j

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 927cca0b9337 by Zachary Ware in branch '2.7': Issue #22644: Update the Windows build to OpenSSL 1.0.1j https://hg.python.org/cpython/rev/927cca0b9337 New changeset 6ad0299fa279 by Zachary Ware in branch '3.4': Issue #22644: Update the Windows build

[issue22160] Windows installers need to be updated following OpenSSL security release

2014-10-17 Thread Zachary Ware
Zachary Ware added the comment: Superseded by #22644 (and done, anyway). -- assignee: - zach.ware resolution: - fixed stage: - resolved status: open - closed superseder: - Update Windows installers to OpenSSL 1.0.1j type: - security ___ Python

[issue22644] Update Windows installers to OpenSSL 1.0.1j

2014-10-17 Thread Zachary Ware
Zachary Ware added the comment: Done, as long as the buildbots stay happy with it. -- assignee: - zach.ware components: +Installation, Windows resolution: - fixed stage: - resolved status: open - closed type: - security ___ Python tracker

[issue22655] Build error on CentOS 5.4

2014-10-17 Thread Stefan Krah
Stefan Krah added the comment: It's a gcc bug, see #20324. -- nosy: +skrah resolution: - not a bug stage: - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22655

[issue22663] patchcheck alters content of .png files

2014-10-17 Thread Robert Collins
New submission from Robert Collins: cpython.hg$ make patchcheck ./python ./Tools/scripts/patchcheck.py Getting the list of files that have been added/changed ... 448 files Fixing whitespace ... 0 files Fixing C file whitespace ... 5 files: Include/patchlevel.h Modules/_ctypes/callbacks.c

[issue7186] Document specialness of __doc__, and possibly other special attributes

2014-10-17 Thread Ethan Furman
Ethan Furman added the comment: Patch attached for the __doc__ attribute. -- keywords: +patch nosy: +ethan.furman stage: needs patch - patch review Added file: http://bugs.python.org/file36956/issue7186.stoneleaf.01.patch ___ Python tracker

[issue22664] IDLE: Standard output and error from multiprocessing vanishes

2014-10-17 Thread ppperry
New submission from ppperry: Note: not sure whether this issue belongs as a behavior or an enhancement In IDLE: def print_a_test_string(): print test print_a_test_string() test threading.Thread(target=print_a_test_string).start() test

[issue7186] Document specialness of __doc__, and possibly other special attributes

2014-10-17 Thread R. David Murray
R. David Murray added the comment: Looks fine to me. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7186 ___ ___ Python-bugs-list mailing list

[issue22663] patchcheck alters content of .png files

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: I can't reproduce. Which platform are you on? -- nosy: +georg.brandl, pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22663 ___

[issue22653] Crash in insertdict

2014-10-17 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- versions: -Python 3.3 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22653 ___ ___ Python-bugs-list

[issue22653] Crash in insertdict

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 9ec84f9b61c6 by Antoine Pitrou in branch '3.4': Issue #22653: Fix an assertion failure in debug mode when doing a reentrant dict insertion in debug mode. https://hg.python.org/cpython/rev/9ec84f9b61c6 New changeset 4ff865976bb9 by Antoine Pitrou

[issue22653] Crash in insertdict

2014-10-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ok, then I've committed the patch to 3.4 and 3.5. -- resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22653

[issue21991] The new email API should use MappingProxyType instead of returning new dicts.

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset fea3ddcaf652 by R David Murray in branch '3.4': #21991: make headerregistry params property MappingProxyType. https://hg.python.org/cpython/rev/fea3ddcaf652 New changeset 5beb1ea76f36 by R David Murray in branch 'default': Merge: #21991: make

[issue21991] The new email API should use MappingProxyType instead of returning new dicts.

2014-10-17 Thread R. David Murray
R. David Murray added the comment: Thanks, Stéphane. I committed the fix with a modified test. -- resolution: - fixed stage: commit review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21991

[issue13664] UnicodeEncodeError in gzip when filename contains non-ascii

2014-10-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: test_gzip passed after this patch. -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13664 ___

[issue9351] argparse set_defaults on subcommands should override top level set_defaults

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset e9cb45ccf42b by R David Murray in branch '3.4': #9351: set_defaults on subparser is no longer ignored if set on parent. https://hg.python.org/cpython/rev/e9cb45ccf42b New changeset b35a811d4420 by R David Murray in branch 'default': Merge: #9351:

[issue9351] argparse set_defaults on subcommands should override top level set_defaults

2014-10-17 Thread R. David Murray
R. David Murray added the comment: Thanks, Jyrki. -- nosy: +r.david.murray resolution: - fixed stage: commit review - resolved status: open - closed versions: +Python 3.4, Python 3.5 -Python 3.2 ___ Python tracker rep...@bugs.python.org

[issue15989] Possible integer overflow of PyLong_AsLong() results

2014-10-17 Thread R. David Murray
R. David Murray added the comment: Are the fixes in the final patch waiting for someone to write tests, or is the intent to commit them without tests after a final review because tests are too difficult to write? -- nosy: +r.david.murray ___ Python

[issue18853] Got ResourceWarning unclosed file when running Lib/shlex.py demo

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4c2b77d0680b by R David Murray in branch '3.4': #18853: Fix resource warning in shlex's __main__ section. https://hg.python.org/cpython/rev/4c2b77d0680b New changeset 8ed630f28753 by R David Murray in branch 'default': Merge: #18853: Fix resource

[issue18853] Got ResourceWarning unclosed file when running Lib/shlex.py demo

2014-10-17 Thread R. David Murray
R. David Murray added the comment: Thanks for the patch, Vajrasky, but I chose a different fix, since the proposed one could leave the file open if the shlex constructor raised an error. Not particularly important, but as long as we are cleaning up the code we might as well make it as clean

[issue17401] io.FileIO closefd parameter is not documented nor shown in repr

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset a1500e4a159a by Robert Collins in branch 'default': Issue #17401: document closefd in io.FileIO docs and add to repr https://hg.python.org/cpython/rev/a1500e4a159a -- nosy: +python-dev ___ Python tracker

[issue16079] list duplicate test names with patchcheck

2014-10-17 Thread Robert Collins
Robert Collins added the comment: FWIW testtools rejects test suites with duplicate test ids; I'm considering adding that feature into unittest itself. We'd need an option to make it warn rather than error I think, but if we did that we wouldn't need a separate script at all. --

[issue22606] Inconsistency between Python 2 and PyPy regarding future imports

2014-10-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: A difference in internal behavior between CPython and PyPy is not necessarily a CPython bug, or even a PyPy bug. It may just be an implementation choice. So ignore PyPy and consider Python doc versus CPython behavior. Running the three quoted lines by

[issue22607] find by dichotomy the failing test

2014-10-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: I believe the goal, and a better title, is Automate leak discovery within a group of tests. Bisection or dichotomy is a means, not a goal, and should not be part of the title. Leak discovery means 'find a test within the group that has a leak (which we know

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill
Aaron Hill added the comment: Okay, then. I'll just leave it out. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18216 ___ ___ Python-bugs-list

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill
Changes by Aaron Hill aa1ron...@gmail.com: Added file: http://bugs.python.org/file36957/gettext-mo-fix-minor-version.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18216 ___

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill
Changes by Aaron Hill aa1ron...@gmail.com: Removed file: http://bugs.python.org/file36957/gettext-mo-fix-minor-version.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18216 ___

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill
Changes by Aaron Hill aa1ron...@gmail.com: Added file: http://bugs.python.org/file36958/gettext-mo-fixup.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18216 ___

[issue18216] gettext doesn't check MO versions

2014-10-17 Thread Aaron Hill
Aaron Hill added the comment: I've added a second patch, which properly distinguishes between major and minor revisions, and updates the docs to account for the new behavior. -- ___ Python tracker rep...@bugs.python.org

[issue15944] memoryviews and ctypes

2014-10-17 Thread Martin Panter
Changes by Martin Panter vadmium...@gmail.com: -- nosy: +vadmium ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15944 ___ ___ Python-bugs-list

[issue21436] Consider leaving importlib.abc.Loader.load_module()

2014-10-17 Thread Martin Panter
Changes by Martin Panter vadmium...@gmail.com: -- nosy: +vadmium ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21436 ___ ___ Python-bugs-list

[issue22665] shutil.__all__ incomplete

2014-10-17 Thread Martin Panter
New submission from Martin Panter: Continuing on from Issue 22247 (other out-of-date __all__ attributes), shutil.__all__ is missing (at least) get_terminal_size(), which was implemented for Issue 13609. -- components: Library (Lib) messages: 229630 nosy: vadmium priority: normal

[issue7186] Document specialness of __doc__, and possibly other special attributes

2014-10-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7c183c782401 by Ethan Furman in branch '3.4': Issue7186: document that __doc__ is not inherited by subclasses https://hg.python.org/cpython/rev/7c183c782401 New changeset cb8606fc84df by Ethan Furman in branch 'default': Issue7186: document that

[issue7186] Document specialness of __doc__, and possibly other special attributes

2014-10-17 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7186 ___

  1   2   >