[issue9727] Add callbacks to be invoked when locale changes

2014-06-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: Closing as won't fix, then. -- resolution: -> wont fix status: open -> closed ___ Python tracker ___ __

[issue11736] windows installers ssl module / openssl broken for some sites

2014-06-17 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue21797] mmap read of single byte accesses more that just that byte

2014-06-17 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: You could even use "ctypes" to access the underlining "mmap" OS syscall. But accessing individual bytes using native python is not guaranteed to work because python is too high level for that. For instance, it could read 64 bits (a word) to only use 8 at the

[issue21797] mmap read of single byte accesses more that just that byte

2014-06-17 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Kevin, mmap is not appropriate for your use. Looks like writing your own module would be simple enough. If performance is not a problem, maybe ctypes/cffi pointer magic encapsulate in your own custom class would be enough for you. I mark this bug as "not a bu

[issue21332] subprocess bufsize=1 docs are misleading

2014-06-17 Thread raylu
raylu added the comment: I'm fairly sure this hasn't been fixed in tip so I think we're still waiting on patch review. Is there an update here? -- ___ Python tracker ___ ___

[issue16136] Removal of VMS support

2014-06-17 Thread Sandeep Mathew
Sandeep Mathew added the comment: It does build with some tweaking here and there. But I ran into runtime issues. I am sorry, I cannot dedicate time on it further. IMHO anything built for VMS should use VMS specific API's in the way they are designed for stability and performance reasons, some m

[issue11736] windows installers ssl module / openssl broken for some sites

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: I don't recall any recent reports of this problem so think this can be closed as "out of date"? -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue1571878] Improvements to socket module exceptions

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Is this the type of change that PEP3151 was aimed at? -- nosy: +BreamoreBoy ___ Python tracker ___

[issue11601] UnixCCompiler always uses compiler_so, not compiler

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have an answer to the question given in msg131355 please? -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue11580] Add width and precision formatters to PyBytes_FromFormatV()

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have a patch review please. -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list

[issue11511] Proposal for exposing proxy bypass settings in ProxyHandler

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have a patch review on this please. -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bu

[issue11430] can't change the sizeof a Structure that doesn't own its buffer

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Your opinions please folks. -- nosy: +BreamoreBoy, amaury.forgeotdarc, belopolsky, meador.inge versions: +Python 3.5 -Python 3.2 ___ Python tracker _

[issue21800] Implement RFC 6855 (IMAP Support for UTF-8) in imaplib.

2014-06-17 Thread Milan Oberkirch
Changes by Milan Oberkirch : -- components: email nosy: barry, jesstess, pitrou, r.david.murray, zvyn priority: normal severity: normal status: open title: Implement RFC 6855 (IMAP Support for UTF-8) in imaplib. versions: Python 3.5 ___ Python tracker

[issue14534] Add method to mark unittest.TestCases as "do not run".

2014-06-17 Thread Michael Foord
Michael Foord added the comment: My suggested solution is a class decorator you use on your base class that means "don't run tests from this class". @unittest.base_class class MyTestBase(TestCase): pass Not quite sure how that's sophisticated or confusing... Are you confusing the way it

[issue21725] RFC 6531 (SMTPUTF8) support in smtpd

2014-06-17 Thread Milan Oberkirch
Milan Oberkirch added the comment: I replied to some review comments, and made a new patch implementing your suggestions. -- Added file: http://bugs.python.org/file35679/issue21725v3.patch ___ Python tracker _

[issue21723] Float maxsize is treated as infinity in asyncio.Queue

2014-06-17 Thread A. Jesse Jiryu Davis
Changes by A. Jesse Jiryu Davis : -- nosy: +emptysquare ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue21722] teach distutils "upload" to exit with code != 0 when error occurs

2014-06-17 Thread Martin Dengler
Martin Dengler added the comment: I've got the contrib form bit now. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue21694] IDLE - Test ParenMatch

2014-06-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: I changed the close to match what worked in test_hyperparser. At first, I still got the warning. To see if the remaining problem was the import of EditorWindow, I disabled that, and the message went away. When I re-enabled the import, it stayed away. Puzzling,

[issue12144] cookielib.CookieJar.make_cookies fails for cookies with 'expires' set

2014-06-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: As I marked in the Stage setting 3 yrs ago, the patch needs a test, in particular a acceptible unittest. I doubt that cnn.com qualifies. Senthil? David? Perhaps we should have a test.python.org for use by tests, with oscure urls that return just what is neede

[issue21723] Float maxsize is treated as infinity in asyncio.Queue

2014-06-17 Thread STINNER Victor
STINNER Victor added the comment: Thanks Vajrasky, I aplied your patch. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue21723] Float maxsize is treated as infinity in asyncio.Queue

2014-06-17 Thread STINNER Victor
STINNER Victor added the comment: Change also pushed to Tulip (changeset 3a392e5328c0). -- ___ Python tracker ___ ___ Python-bugs-list

[issue11429] ctypes is highly eclectic in its raw-memory support

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Your opinions please gentlemen. -- nosy: +BreamoreBoy, amaury.forgeotdarc, belopolsky, meador.inge versions: +Python 3.5 -Python 3.2 ___ Python tracker _

[issue11267] asyncore does not check for POLLERR and POLLHUP if neither readable nor writable

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: I'm assuming that any work on this is unlikely as asyncore is deprecated in favour of asyncio. -- nosy: +BreamoreBoy, giampaolo.rodola versions: +Python 3.4, Python 3.5 -Python 2.6, Python 2.7, Python 3.2, Python 3.3 ___

[issue21799] Py_SetPath() gives compile error: undefined reference to '__imp_Py_SetPath'

2014-06-17 Thread Pat Le Cat
New submission from Pat Le Cat: I use Python 3.4.1 x64 (binaries downloaded) under Windows 8.1 with mingw64 (GCC 4.9 using C++). All the other functions work fine. Excerpt: Py_SetPath(L"python34.zip"); wchar_t* pyPath = Py_GetPath(); Py_Initialize(); -- components: Build, L

[issue11195] next fixer fooled by trailing characters

2014-06-17 Thread Mark Lawrence
Changes by Mark Lawrence : -- title: next fixer fooled by trailing cheracters -> next fixer fooled by trailing characters type: -> behavior versions: +Python 2.7, Python 3.4, Python 3.5 -Python 3.1 ___ Python tracker

[issue21763] Clarify requirements for file-like objects

2014-06-17 Thread Nick Coghlan
Nick Coghlan added the comment: I can add a third suggestion: a "HOWTO" guide on implementing and using file-like objects. It's actually a somewhat complex topic with various trade-offs involved, particularly in Python 3 where the differences between binary and text IO are greater. It could also

[issue9727] Add callbacks to be invoked when locale changes

2014-06-17 Thread Nick Coghlan
Nick Coghlan added the comment: It ended up there were more serious problems with mixing runtimes on Windows (especially around file descriptors), so this likely wouldn't help much in practice. -- ___ Python tracker

[issue21777] Separate out documentation of binary sequence methods

2014-06-17 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue21723] Float maxsize is treated as infinity in asyncio.Queue

2014-06-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset ccfc13183fea by Victor Stinner in branch '3.4': Issue #21723: asyncio.Queue: support any type of number (ex: float) for the http://hg.python.org/cpython/rev/ccfc13183fea New changeset a2f115bfa513 by Victor Stinner in branch 'default': (Merge 3.4) I

[issue4887] environment inspection and manipulation API is buggy, inconsistent with "Python philosophy" for wrapping native APIs

2014-06-17 Thread Martin Panter
Changes by Martin Panter : -- nosy: +vadmium ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue10310] signed:1 bitfields rarely make sense

2014-06-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3aeca1fd4c0e by Victor Stinner in branch 'default': Issue #10310: Use "unsigned int field:1" instead of "signed int field:1" in a http://hg.python.org/cpython/rev/3aeca1fd4c0e -- nosy: +python-dev ___ Pyt

[issue11191] test_search_cpp error on AIX (with xlc)

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: After three years can we close this test failure as "out of date"? -- nosy: +BreamoreBoy type: -> behavior ___ Python tracker ___ __

[issue21798] Allow adding Path or str to Path

2014-06-17 Thread R. David Murray
R. David Murray added the comment: I would expect addition to return PosixPath('/tmp/some_base/_name.dat'), (ie: path.join). -- nosy: +pitrou, r.david.murray ___ Python tracker

[issue11142] xmlrpclib.ServerProxy with verbosity produces bad output

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: I'm assuming that this is classed as an enhancement request and not a bug. -- nosy: +BreamoreBoy, loewis type: -> enhancement versions: +Python 3.5 -Python 2.7 ___ Python tracker _

[issue15993] Windows: 3.3.0-rc2.msi: test_buffer fails

2014-06-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: I'd be fine to reconsider if a previously-demonstrated bug is now demonstrated-fixed. However, if the actual bug persists, optimization should be disabled for all code, not just for the code that allows to demonstrate the bug. This principle should indeed bee

[issue21798] Allow adding Path or str to Path

2014-06-17 Thread Gerrit Holl
New submission from Gerrit Holl: It would be great if we could "add" either str or Path to Path objects. Currently, we can join paths only by adding a directory, or by replacing the suffix. But sometimes we want to build up a path more directly. With strings we can do that simply by concate

[issue10002] Installer doesn't install on Windows Server 2008 DataCenter R2

2014-06-17 Thread Martin v . Löwis
Martin v. Löwis added the comment: It seems that the system wasn't rebooted after a previous installation that required a reboot. The specific component that caused the failure is the Microsoft CRT, so there is nothing we can do about this. -- resolution: -> wont fix status: open -> c

[issue10933] Tracing disabled when a recursion error is triggered (even if properly handled)

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have a response to this please. -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.4, Python 3.5 -Python 2.6, Python 3.1 ___ Python tracker ___

[issue21793] httplib client/server status refactor

2014-06-17 Thread Ethan Furman
Ethan Furman added the comment: Left comments in reitvald about modifying the Enum used -- let me know if you have any questions about that. -- ___ Python tracker ___ __

[issue9034] datetime module should use int32_t for date/time components

2014-06-17 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.5 -Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10850] inconsistent behavior concerning multiprocessing.manager.BaseManager._Server

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Can we have a response to this please. -- components: +Extension Modules -None nosy: +BreamoreBoy, sbt versions: +Python 2.7, Python 3.4, Python 3.5 -Python 3.2 ___ Python tracker _

[issue21763] Clarify requirements for file-like objects

2014-06-17 Thread R. David Murray
R. David Murray added the comment: I believe Antoine was suggesting that you suggest wording that would make it clear (rather than implied) that close was idempotent, but "This method has no effect if the file is already closed" seems pretty unambiguous to me, so I don't really see anything to

[issue10381] Add timezone support to datetime C API

2014-06-17 Thread Mark Lawrence
Changes by Mark Lawrence : -- versions: +Python 3.5 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21790] Change blocksize in http.client to the value of resource.getpagesize

2014-06-17 Thread Claudiu Popa
Claudiu Popa added the comment: resource module is available only on Unix. -- nosy: +Claudiu.Popa ___ Python tracker ___ ___ Python-bu

[issue12455] urllib2 forces title() on header names, breaking some requests

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: @Karl do you intend following up on this issue? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Pyth

[issue10136] kill_python doesn't work with short path

2014-06-17 Thread Zachary Ware
Zachary Ware added the comment: If anybody actually has a problem with this in future, they can reopen the issue and try using GetFullPathName as Steve suggested. -- resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python track

[issue5550] [urllib.request]: Comparison of HTTP headers should be insensitive to the case

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: @Karl do you intend following up on this issue? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Pytho

[issue21763] Clarify requirements for file-like objects

2014-06-17 Thread Nikolaus Rath
Nikolaus Rath added the comment: On 06/17/2014 01:28 PM, R. David Murray wrote: > Well, but we think it's pretty clear. This wasn't the impression that I had from the thread on python-devel, but I'll accept your judgement on that. I'll be more restrained when being asked for suggestions in the f

[issue12144] cookielib.CookieJar.make_cookies fails for cookies with 'expires' set

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Can someone review the patch please. -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker ___ _

[issue21694] IDLE - Test ParenMatch

2014-06-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8a64509b0bd5 by Terry Jan Reedy in branch '2.7': Issue #21694: Add unittest for ParenMatch. Patch by Saimadhav Heblikar. http://hg.python.org/cpython/rev/8a64509b0bd5 New changeset 385d4fea9f13 by Terry Jan Reedy in branch '3.4': Issue #21694: Add u

[issue21763] Clarify requirements for file-like objects

2014-06-17 Thread Antoine Pitrou
Antoine Pitrou added the comment: Rather than a note, there could be a separate section for guidelines when implementing one's own IO classes. Assuming there's anything significant to put in such a section, that is :-) -- ___ Python tracker

[issue21763] Clarify requirements for file-like objects

2014-06-17 Thread R. David Murray
R. David Murray added the comment: Re-reading my last paragraph, I see that I'm pretty much agreeing with you. So the contention is more that we don't think your suggested patch is necessary. Especially since, unlike your patch wording says, in fact most of the methods *are* implemented in t

[issue21763] Clarify requirements for file-like objects

2014-06-17 Thread R. David Murray
R. David Murray added the comment: Well, but we think it's pretty clear. The glossary entry says file object interfaces are defined by the classes in the io module. As do the io module docs. Perhaps the first sentence of the io docs could be modified to strengthen that (but it already does

[issue21797] mmap read of single byte accesses more that just that byte

2014-06-17 Thread Kevin Smith
New submission from Kevin Smith: I am using the mmap module on Linux with python 2.7.6 to access memory-mapped IO. The device that I am accessing implements a hardware FIFO that holds 16-bit values and pops an entry when the MSB of the entry is read. I am trying to use the mmap module to do

[issue10136] kill_python doesn't work with short path

2014-06-17 Thread Steve Dower
Steve Dower added the comment: My usual way of doing this is to use taskkill.exe, but that only uses process name and not the full path, which may hurt people who are building with other versions of Python open. I'd rather use GetFullPathName than the current patch, but if wontfix is the pref

[issue21763] Clarify requirements for file-like objects

2014-06-17 Thread Nikolaus Rath
Nikolaus Rath added the comment: "R. David Murray" writes: > R. David Murray added the comment: > > Nikolaus: while I agree that Raymond's comments were a bit strongly > worded, it doesn't read to me as if the thread you link to is on point > for this issue. The thread was focused on a *specifi

[issue21796] tempfile.py", line 83, in once_lock = _allocate_lock() thread.error: can't allocat lock

2014-06-17 Thread Shal
Changes by Shal : Added file: http://bugs.python.org/file35678/mimetools.py ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue21796] tempfile.py", line 83, in once_lock = _allocate_lock() thread.error: can't allocat lock

2014-06-17 Thread Shal
Changes by Shal : Added file: http://bugs.python.org/file35677/cgi.py ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue21796] tempfile.py", line 83, in once_lock = _allocate_lock() thread.error: can't allocat lock

2014-06-17 Thread Shal
Changes by Shal : Removed file: http://bugs.python.org/file35677/cgi.py ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue10136] kill_python doesn't work with short path

2014-06-17 Thread Tim Golden
Tim Golden added the comment: +1 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mai

[issue21796] tempfile.py", line 83, in once_lock = _allocate_lock() thread.error: can't allocat lock

2014-06-17 Thread Shal
Changes by Shal : Added file: http://bugs.python.org/file35676/cgi.py ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue21796] tempfile.py", line 83, in once_lock = _allocate_lock() thread.error: can't allocat lock

2014-06-17 Thread Shal
New submission from Shal: The following error is with using python 2.7.3 on HP-UX 11.11 Very occasionally get following error. The error occurs once every 20 - 30 days. OS HP-UX 11.11 applicationCode.py is invoked via a cgi wrapper by apache httpd . ### ERROR LISTNG ##

[issue21793] httplib client/server status refactor

2014-06-17 Thread R. David Murray
Changes by R. David Murray : -- nosy: +barry, eli.bendersky, ethan.furman, orsenthil ___ Python tracker ___ ___ Python-bugs-list maili

[issue10136] kill_python doesn't work with short path

2014-06-17 Thread Zachary Ware
Zachary Ware added the comment: I'm inclined to close as 'won't fix'; kill_python.exe is an "eh, good enough" hack meant mostly for the buildbots anyway, and short paths are exceptionally rare these days. If anything, I'd just add a warning that if "~" is in the path, all bets are off. -

[issue10009] Automated MSI installation does not work

2014-06-17 Thread Steve Dower
Steve Dower added the comment: If we wanted to migrate the instructions to 2.7/3.5 as suggested then there's some updating to do, but if there's no plan to update them then I agree, there's nothing to do here. FWIW, the 3.5 installer will accept the same command line options as previous versi

[issue21686] IDLE - Test hyperparser

2014-06-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: I forgot to mention that with this particular shutdown order @classmethod def tearDownClass(cls): del cls.text, cls.editwin cls.root.destroy() del cls.root the shutdown warning message we have seen about not handling an event went

[issue21725] RFC 6531 (SMTPUTF8) support in smtpd

2014-06-17 Thread R. David Murray
R. David Murray added the comment: Review comments added. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue10136] kill_python doesn't work with short path

2014-06-17 Thread Ned Deily
Changes by Ned Deily : -- components: +Windows -Build nosy: +steve.dower, tim.golden, zach.ware ___ Python tracker ___ ___ Python-bugs

[issue10009] Automated MSI installation does not work

2014-06-17 Thread Ned Deily
Changes by Ned Deily : -- nosy: +steve.dower, zach.ware ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue21795] smtpd.SMTPServer should announce 8BITMIME when supported

2014-06-17 Thread Milan Oberkirch
New submission from Milan Oberkirch: The smtpd.SMTPServer does support 8BITMIME if decode_date is False (#19662) and could be announced under this condition. The patch for #21725 already implements 8BITMIME so this can easily be done afterwards. -- components: email messages: 220868 no

[issue9248] multiprocessing.pool: Proposal: "waitforslot"

2014-06-17 Thread Ned Deily
Changes by Ned Deily : -- nosy: +sbt ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mai

[issue21789] Broken link to PEP 263 in Python 2.7 error message

2014-06-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset f80199b009ef by Ned Deily in branch '2.7': Issue #21789: fix broken link (reported by Jan Varho) http://hg.python.org/cpython/rev/f80199b009ef -- nosy: +python-dev ___ Python tracker

[issue21789] Broken link to PEP 263 in Python 2.7 error message

2014-06-17 Thread Ned Deily
Ned Deily added the comment: Thanks for the report! -- nosy: +ned.deily resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___ __

[issue21794] stack frame contains name of wrapper method, not that of wrapped method

2014-06-17 Thread Josh Rosenberg
Josh Rosenberg added the comment: I don't think you understand how wrapping works. At the time you're enumerating the stack, the wrapped function has not actually been called. Only the wrapper has been called. If the stack included "junk" when junk had not yet been executed, the stack would be

[issue14534] Add method to mark unittest.TestCases as "do not run".

2014-06-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Michael's suggestion looks too sophisticated and confusing to me. -- nosy: +serhiy.storchaka ___ Python tracker ___ __

[issue10170] Relationship between turtle speed setting and actual speed is not documented

2014-06-17 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.5 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue21794] stack frame contains name of wrapper method, not that of wrapped method

2014-06-17 Thread the mulhern
New submission from the mulhern: >>> def decorator(f): ... @functools.wraps(f) ... def new_func(self, junk): ... stack = inspect.stack() ... for i, frame in enumerate(stack): ... print("%s" % frame[3]) ... f(self, junk) ... retur

[issue21561] help() on enum34 enumeration class creates only a dummy documentation

2014-06-17 Thread Andy Maier
Andy Maier added the comment: Attaching the patch for Lib/test/test_pydoc.py, relative to the tip of 2.7. The patch adds a testcase test_class_with_metaclass(), which defines a class that provokes the buggy behavior, and verifies the fix. -- Added file: http://bugs.python.org/file35674

[issue21561] help() on enum34 enumeration class creates only a dummy documentation

2014-06-17 Thread Andy Maier
Andy Maier added the comment: Attaching the patch for pydoc.py, relative to the tip of 2.7. the patch contains just the proposed fix, and no longer the debug prints. -- keywords: +patch Added file: http://bugs.python.org/file35673/pydoc.py.patch ___

[issue21793] httplib client/server status refactor

2014-06-17 Thread Demian Brecht
New submission from Demian Brecht: This patch is a follow up to an out of scope comment made by R. David Murray in #20898 (http://bugs.python.org/issue20898#msg213771). In a nutshell, there is some redundancy between http.client and http.server insofar as the definition of http status code, na

[issue9191] winreg.c:Reg2Py() may leak memory (in unusual circumstances)

2014-06-17 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: -brian.curtin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue10310] signed:1 bitfields rarely make sense

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Could we have a patch review on this please. -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-

[issue10170] Relationship between turtle speed setting and actual speed is not documented

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: IIRC somebody has been working on the turtle code and/or docs recently, if I'm correct presumably they could pick this issue up? -- nosy: +BreamoreBoy ___ Python tracker __

[issue21792] Spam

2014-06-17 Thread Zachary Ware
Changes by Zachary Ware : -- Removed message: http://bugs.python.org/msg220856 ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue21792] Spam

2014-06-17 Thread Zachary Ware
Changes by Zachary Ware : -- title: Invitation to connect on LinkedIn -> Spam ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue10136] kill_python doesn't work with short path

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Can somebody review the attached patch please. -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker ___

[issue21792] Invitation to connect on LinkedIn

2014-06-17 Thread SilentGhost
Changes by SilentGhost : -- resolution: -> not a bug status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue21792] Invitation to connect on LinkedIn

2014-06-17 Thread Nathanel Titane
New submission from Nathanel Titane: LinkedIn Python, I'd like to add you to my professional network on LinkedIn. - Nathanel Nathanel Titane Industrial Designer at TNDesigns Industrial + Graphic design solutions Montreal, Canada Area Confirm that you know Nathanel Titane: https:

[issue10009] Automated MSI installation does not work

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Can we close this as "out of date" as we're already working on msi for 3.5? -- nosy: +BreamoreBoy ___ Python tracker ___

[issue14534] Add method to mark unittest.TestCases as "do not run".

2014-06-17 Thread Zachary Ware
Zachary Ware added the comment: Right, but in my experience, it seems like a lot of people do inherit from TestCase in their mixin anyway, possibly just to have the TestCase methods available for auto-completion in their IDE. I've done the same, though I've remembered after writing the tests

[issue9976] Make TestCase._formatMessage public

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Slipped under the radar? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.2 ___ Python tracker ___ __

[issue9770] curses.isblank function doesn't match ctype.h

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: The problem and fix are simple but who is best placed to take a look at this? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker _

[issue9727] Add callbacks to be invoked when locale changes

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: @Nick is this something you'd like to pick up on, and are there any other Windows gurus who should be added to the nosy list? -- nosy: +BreamoreBoy ___ Python tracker __

[issue9714] urllib2 digest authentication doesn't work when connecting to a Catalyst server.

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Could we have a response to this problem please. -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker __

[issue9698] When reusing an handler, urllib(2)'s digest authentication fails after multiple regative replies

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Could we have a response to this please as a way to reproduce the problem is given in the attached patch and a suggested solution is inline. -- nosy: +BreamoreBoy ___ Python tracker

[issue13223] pydoc removes 'self' in HTML for method docstrings with example code

2014-06-17 Thread Stefan Krah
Stefan Krah added the comment: I guess the tests --without-doc-strings are broken: http://buildbot.python.org/all/builders/AMD64%20FreeBSD%209.0%203.x/builds/6900/steps/test/logs/stdio -- nosy: +skrah ___ Python tracker

[issue15025] httplib and http.client are missing response messages for defined WEBDAV responses, e.g., UNPROCESSABLE_ENTITY (422)

2014-06-17 Thread R. David Murray
Changes by R. David Murray : -- nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue8997] Write documentation for codecs.readbuffer_encode()

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Slipped under the radar? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.2 ___ Python tracker ___ __

[issue9499] Python C/API Execution namespace undocumented. (patch included)

2014-06-17 Thread Mark Lawrence
Mark Lawrence added the comment: Can somebody review this small patch please. -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-b

[issue7769] SimpleXMLRPCServer.SimpleXMLRPCServer.register_function as decorator

2014-06-17 Thread Claudiu Popa
Changes by Claudiu Popa : -- nosy: +Claudiu.Popa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

  1   2   >