[issue20132] Many incremental codecs don’t handle fragmented data

2014-01-10 Thread Martin Panter
Martin Panter added the comment: I think calling iterencode() with an empty iterator is a side issue. Even with a non-empty iterator, it tries to encode an empty _text_ string to finalise the encoder: >>> bytes().join(codecs.iterencode(iter((b"data",)), "base64-codec")) Traceback (most recent

[issue20221] #define hypot _hypot conflicts with existing definition

2014-01-10 Thread Tabrez Mohammed
Tabrez Mohammed added the comment: v100 toolset, with compiler setting /W4. Microsoft recommends W4 for all new C++ projects (see http://msdn.microsoft.com/en-us/library/thxezb7y(v=vs.100).aspx). I'm using 3.3. -- ___ Python tracker

[issue20172] Derby #3: Convert 67 sites to Argument Clinic across 4 files (Windows)

2014-01-10 Thread Zachary Ware
Zachary Ware added the comment: Here's msvcrt. -- Added file: http://bugs.python.org/file33415/issue20172.msvcrt.diff ___ Python tracker ___ _

[issue20221] #define hypot _hypot conflicts with existing definition

2014-01-10 Thread Zachary Ware
Zachary Ware added the comment: How are you compiling to get that warning? I've never seen it, and none of the Windows buildbots do either. Also, which version of Python are you compiling on which version of Windows? -- nosy: +zach.ware stage: -> test needed versions: -Python 2.7,

[issue19619] Blacklist base64, hex, ... codecs from bytes.decode() and str.encode()

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

[issue14119] Ability to adjust queue size in Executors

2014-01-10 Thread Victor Varvariuc
Victor Varvariuc added the comment: Hi! Looks like your pseudocode will work as a workaround instead of monkey-patching! Still the my suggestion to add the line to code stays. self._count should be always equal to the length of self._work_queue? If yes, why duplication. If no - which one to us

[issue19995] %c, %o, %x, %X accept non-integer values instead of raising an exception

2014-01-10 Thread Ethan Furman
Ethan Furman added the comment: For anyone paying really close attention, I've already switched the assertEquals to assertEqual. ;) -- Added file: http://bugs.python.org/file33414/issue19995.stoneleaf.04.patch ___ Python tracker

[issue20221] #define hypot _hypot conflicts with existing definition

2014-01-10 Thread Tabrez Mohammed
New submission from Tabrez Mohammed: In pyconfig.h (line 216), there is this line: #define hypot _hypot This conflicts with the definition of _hypot that ships with VS2010 (math.h, line 161): static __inline double __CRTDECL hypot(_In_ double _X, _In_ double _Y) The result of the redefinition

[issue14119] Ability to adjust queue size in Executors

2014-01-10 Thread Brian Quinlan
Brian Quinlan added the comment: Can't you accomplish what you want using add_done_callback? e.g. # Pseudocode class MyExecutor(ThreadPoolExecutor): def __init__(self): self._count = 0 def _decrement(self): with self._some_lock: self._count -= 1 def submit(self, fn, *args,

[issue20138] wsgiref on Python 3.x incorrectly implements URL handling causing mangled Unicode

2014-01-10 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue20138] wsgiref on Python 3.x incorrectly implements URL handling causing mangled Unicode

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: >>> from wsgiref.util import request_uri >>> request_uri({ ... 'wsgi.url_scheme': 'http', ... 'SCRIPT_NAME': '', ... 'PATH_INFO': '/\N{SNOWMAN}', ... 'SERVER_PORT': '80', ... 'SERVER_NAME': 'localhost' ... }) 'http://localhost/%E2%98%83' >>> request_uri({

[issue20138] wsgiref on Python 3.x incorrectly implements URL handling causing mangled Unicode

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could you please show us the value of env? Perhaps it is werkzeug creates wrongly quoted URL. request_uri() just calls urllib.parse.quote() which works good. >>> from urllib.parse import quote, unquote >>> quote('/\N{SNOWMAN}') '/%E2%98%83' >>> unquote('/%E2

[issue20138] wsgiref on Python 3.x incorrectly implements URL handling causing mangled Unicode

2014-01-10 Thread Armin Ronacher
Armin Ronacher added the comment: What it currently returns: >>> from wsgiref.util import request_uri >>> request_uri({ ... 'wsgi.url_scheme': 'http', ... 'SCRIPT_NAME': '', ... 'PATH_INFO': '/\xe2\x98\x83', ... 'SERVER_PORT': '80', ... 'SERVER_NAME': 'localhost' ... }) 'http://localhost/%C

[issue20086] test_locale fails with Turkish locale

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Good catch, Stefan! Here is a patch which restores old behavior. It also changes test_locale to try several Turkish locale names. On some platforms (as Ubuntu) bare tr_TR is not exist, but only tr_TK.utf8. This will increase chance for this test to run. ---

[issue20138] wsgiref on Python 3.x incorrectly implements URL handling causing mangled Unicode

2014-01-10 Thread Armin Ronacher
Armin Ronacher added the comment: > Which version and bugfix release are you using? You can reproduce it against the current development version of Python 3. > What is werkzeug and what does it have to do with stdlib urllib? Werkzeug is a WSGI implementation. > An stdlib test cannot depend on

[issue20138] wsgiref on Python 3.x incorrectly implements URL handling causing mangled Unicode

2014-01-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: Which version and bugfix release are you using? What is werkzeug and what does it have to do with stdlib urllib? An stdlib test cannot depend on 3rd party code. -- nosy: +terry.reedy stage: -> test needed type: -> behavior versions: +Python 3.3, Python

[issue20086] test_locale fails with Turkish locale

2014-01-10 Thread Stefan Krah
Stefan Krah added the comment: Ignore me, the fine manual says that "For 8-bit strings, this method is locale-dependent." -- ___ Python tracker ___ __

[issue20135] FAQ need list mutation answers

2014-01-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> needs patch title: mutate list -> FAQ need list mutation answers ___ Python tracker ___ ___

[issue20131] warnings module offers no documented, programmatic way to reset "seen-warning" flag

2014-01-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> test needed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue20086] test_locale fails with Turkish locale

2014-01-10 Thread Stefan Krah
Stefan Krah added the comment: I'm not sure if str.lower() is supposed to use tolower() in stringobject.c. If tolower() is replaced by Py_TOLOWER(), the problem disappears. But maybe the locale dependent tolower() is used on purpose. -- ___ Python tr

[issue20119] pdb c(ont(inue)) optional one-time-only breakpoint (like perl debugger)

2014-01-10 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> test needed versions: +Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue20086] test_locale fails with Turkish locale

2014-01-10 Thread Stefan Krah
Stefan Krah added the comment: 3d805bee06e2 uses str.lower(), which fails on the Turkish 'i' if the Turkish locale is set: Python 2.7.6+ (2.7:0e5df5b62488+, Jan 10 2014, 23:25:35) [GCC 4.6.3 20120306 (Red Hat 4.6.3-2)] on linux2 Type "help", "copyright", "credits" or "license" for more inform

[issue20072] Ttk tests fail when wantobjects is false

2014-01-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue19320] Tkinter tests ran with wantobjects is false

2014-01-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue19320] Tkinter tests ran with wantobjects is false

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Unfortunately they are still red: http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%202.7/builds/1020/steps/test/logs/stdio == FAIL: test_split (test.test_tcl.TclTest) ---

[issue20086] test_locale fails with Turkish locale

2014-01-10 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue20086] test_locale fails on PPC64 PowerLinux

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This bug is occured not only on PPC64 PowerLinux. See also: http://buildbot.python.org/all/builders/x86%20RHEL%206%202.7/builds/975/steps/test/logs/stdio http://buildbot.python.org/all/builders/AMD64%20Fedora%20without%20threads%202.7/builds/1644/steps/test/lo

[issue20086] test_locale fails with Turkish locale

2014-01-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- title: test_locale fails on PPC64 PowerLinux -> test_locale fails with Turkish locale ___ Python tracker ___ ___

[issue20172] Derby #3: Convert 67 sites to Argument Clinic across 4 files (Windows)

2014-01-10 Thread Zachary Ware
Zachary Ware added the comment: PC/winsound.c went pretty quick and easy. -- Added file: http://bugs.python.org/file33412/issue20172.winsound.diff ___ Python tracker ___

[issue20201] Argument Clinic: rwbuffer support broken

2014-01-10 Thread Ryan Smith-Roberts
Ryan Smith-Roberts added the comment: Accepts only a writable bytearray, when the function needs to mutate-in-place. The rw_buffer support is for PyPy I guess. -- ___ Python tracker ___

[issue20115] NUL bytes in commented lines

2014-01-10 Thread Armin Rigo
Armin Rigo added the comment: PyPy 2.x accepts null characters in all of import, exec and eval, and complains if they occur in non-comment. PyPy 3.x refuses them in import, which is where this bug report originally comes from (someone complained that CPython 3.x "accepts" them but not PyPy 3.

[issue20220] TarFile.list() outputs wrong time

2014-01-10 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: TarFile.list() outputs a time exactly 6 hours back from expected. http://buildbot.python.org/all/builders/System%20Z%20Linux%203.x/builds/1023/steps/test/logs/stdio == FAIL: test_list_comma

[issue20219] ElementTree: allow passing XMLPullParser instance into iterparse()

2014-01-10 Thread Stefan Behnel
New submission from Stefan Behnel: in the XMLPullParser ticket http://bugs.python.org/issue17741 specifically here: http://bugs.python.org/msg196177 it says: """ * [The pull parser] will *not* accept a "parser" argument in the constructor. Rationale: the parser argument of iterparse is broke

[issue20172] Derby #3: Convert 67 sites to Argument Clinic across 4 files (Windows)

2014-01-10 Thread Zachary Ware
Zachary Ware added the comment: Here's the complete patch for PC/winreg.c. One clinic/signature/pydoc issue I've noticed: >>> help(winreg.HKEYType.Close) Help on method_descriptor: Close(...)<--- No signature Close() <--- Extra Clo

[issue18960] First line can be executed twice

2014-01-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue20172] Derby #3: Convert 67 sites to Argument Clinic across 4 files (Windows)

2014-01-10 Thread Zachary Ware
Changes by Zachary Ware : Removed file: http://bugs.python.org/file33367/issue20172.partial.diff ___ Python tracker ___ ___ Python-bugs-list m

[issue20172] Derby #3: Convert 67 sites to Argument Clinic across 4 files (Windows)

2014-01-10 Thread Zachary Ware
Changes by Zachary Ware : Added file: http://bugs.python.org/file33411/f2192566eefd.diff ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue8260] When I use codecs.open(...) and f.readline() follow up by f.read() return bad result

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is revised patch. * Behavior is changed less. read() is less greedy and uses characters from the buffer when read() is called with only one argument (size). It is now a little closer to io stream's read() than with previous patch. * Added tests for cas

[issue20218] Add `pathlib.Path.write` and `pathlib.Path.read`

2014-01-10 Thread Ram Rachum
New submission from Ram Rachum: I'd really like to have methods `pathlib.Path.write` and `pathlib.Path.read`. Untested implementation: def read(self, binary=False): with self.open('br' is binary else 'r') as file: return file.read() def write(self, data. binary=False): with sel

[issue20115] NUL bytes in commented lines

2014-01-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: Armin, what is the different behavior of PyPy? We should perhaps get Guido's opinion on this issue. -- ___ Python tracker ___ _

[issue20115] NUL bytes in commented lines

2014-01-10 Thread Terry J. Reedy
Terry J. Reedy added the comment: Python should have a uniform definition of 'Python source' in both the doc and in practice in all source code processing functions. Currently, "2. Lexical analysis" in the Language Manual just says "Python reads program text as Unicode code points; the encodin

[issue20209] Deprecate PROTOCOL_SSLv2

2014-01-10 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +hynek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue17825] Indentation.offset and SyntaxError.offset mismatch

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Florent, can you commit your patch? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue20086] test_locale fails on PPC64 PowerLinux

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Detailed output: http://buildbot.python.org/all/builders/PPC64%20PowerLinux%202.7/builds/415/steps/test/logs/stdio == FAIL: test_getsetlocale_issue1813 (test.test_locale.TestMiscellaneous)

[issue20208] Clarify some things in porting HOWTO

2014-01-10 Thread Brett Cannon
Brett Cannon added the comment: There's actually no way to tweak that formatting as that is all done by Sphinx automatically. -- ___ Python tracker ___ _

[issue20217] Build failure in posixmodule.c with SCHED_SPORADIC available

2014-01-10 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- versions: -Python 3.4 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue20217] Build failure in posixmodule.c with SCHED_SPORADIC available

2014-01-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 4f74ea7eba03 by Benjamin Peterson in branch '3.3': fix build when SCHED_SPORADIC is defined (closes #20217) http://hg.python.org/cpython/rev/4f74ea7eba03 -- nosy: +python-dev resolution: -> fixed stage: -> committed/rejected status: open -

[issue20217] Build failure in posixmodule.c with SCHED_SPORADIC available

2014-01-10 Thread Benjamin Peterson
Benjamin Peterson added the comment: Congratulations on having a system with SCHED_SPORADIC defined. :) -- ___ Python tracker ___ ___

[issue20217] Build failure in posixmodule.c with SCHED_SPORADIC available

2014-01-10 Thread Phil Connell
New submission from Phil Connell: Typo in revision 71704 that causes build failures on systems with SCHED_SPORADIC available. See attached patch. (Can reproduce by #defining SCHED_SPORADIC just above where it's used in posixmodule.c) -- components: Extension Modules files: sched_spora

[issue20217] Build failure in posixmodule.c with SCHED_SPORADIC available

2014-01-10 Thread Phil Connell
Phil Connell added the comment: Where I actually mean changeset 71704:89e92e684b37 -- ___ Python tracker ___ ___ Python-bugs-list mail

[issue20172] Derby #3: Convert 67 sites to Argument Clinic across 4 files (Windows)

2014-01-10 Thread Zachary Ware
Zachary Ware added the comment: A, much better. An empty subclass doesn't do quite the right thing, but `class REGSAM_converter(int_converter): type = 'REGSAM'` does the trick (see http://hg.python.org/sandbox/zware/rev/5af08aa49631). Thanks, Larry! (Next will probably be trying to get a

[issue10388] spwd returning different value depending on privileges

2014-01-10 Thread R. David Murray
R. David Murray added the comment: I think that a new cross platform API would be great, but I don't think that fixing this bug should wait for that. It may be borderline for being changed in a feature release (and definitely should not be changed in a maintenance release), but I think it wou

[issue20208] Clarify some things in porting HOWTO

2014-01-10 Thread Rodrigo Bernardo Pimentel
Rodrigo Bernardo Pimentel added the comment: BTW, there remains another concern I mentioned on G+: """ A note on formatting: I found some of 4th- and 5th-level headings too subtle. For instance, http://docs.python.org/dev/howto/pyporting.html#from-future-import-absolute-import got me thinking

[issue20208] Clarify some things in porting HOWTO

2014-01-10 Thread Rodrigo Bernardo Pimentel
Rodrigo Bernardo Pimentel added the comment: I've created a patch that addresses the first criticism (explaining unicode_literals), as well as the first mention of print_function. It also addresses a small concern regarding "map", which I've mentioned in my G+ comment: """ Also, a friend was

[issue10388] spwd returning different value depending on privileges

2014-01-10 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: I can agree with you that it's probably better to avoid changing existent python versions to avoid breakage but I see no need to be that strict for newer ones. Current version should check errno but it doesn't. IMO that is clearly a bug. Same goes for retur

[issue20086] test_locale fails on PPC64 PowerLinux

2014-01-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 3696b9ae6b17 by Serhiy Storchaka in branch '2.7': Issue #20086: Output more details when test_getsetlocale_issue1813 is failed. http://hg.python.org/cpython/rev/3696b9ae6b17 -- nosy: +python-dev ___ Pytho

[issue19804] test_uuid.TestUUID.test_find_mac() fails

2014-01-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 34ae4333d3bf by Serhiy Storchaka in branch '2.7': Issue #19804: The test_find_mac test in test_uuid is now skipped if the http://hg.python.org/cpython/rev/34ae4333d3bf New changeset 201077b57fe0 by Serhiy Storchaka in branch '3.3': Issue #19804: The

[issue19804] test_uuid.TestUUID.test_find_mac() fails

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you Bohuslav. Unfortunately I don't see good replacement for ifconfig, any of these executables can be absent (e.g. chroot can be built in BusyBox). So I'll left ifconfig and adds checks for its accessibility. You can workaround this issue by adding an

[issue10388] spwd returning different value depending on privileges

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Even for 3.4 it looks too late. But I afraid we can't change this behavior never. Users of spwd don't expect any exception, raising an exception will break any existing code. Only one safe way is design new API and deprecate old API. This will be great refa

[issue19886] Better estimated memory requirements for bigmem tests

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I never decreased requirements, so these changes shouldn't cause regressions. -- assignee: -> serhiy.storchaka stage: patch review -> commit review ___ Python tracker __

[issue20172] Derby #3: Convert 67 sites to Argument Clinic across 4 files (Windows)

2014-01-10 Thread Larry Hastings
Larry Hastings added the comment: 1) When I wrote that I hadn't considered that people would want custom subclasses of ints. I assumed they'd be using custom converter *functions*, which of course means they'd use 'O&'. I can think of how to reword the text but for now I assume your approach

[issue13881] Stream encoder for zlib_codec doesn't use the incremental encoder

2014-01-10 Thread Walter Dörwald
Walter Dörwald added the comment: The stream part of the codecs isn't used that much in Python 3 any more, so I'm not sure if this is worth fixing. -- ___ Python tracker ___ ___

[issue19456] ntpath doesn't join paths correctly when a drive is present

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If there are no objections, I'll commit this patch tomorrow. -- ___ Python tracker ___ ___ Python-

[issue19886] Better estimated memory requirements for bigmem tests

2014-01-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset aee672ba9c38 by Serhiy Storchaka in branch '2.7': Issue #19886: Use better estimated memory requirements for bigmem tests. http://hg.python.org/cpython/rev/aee672ba9c38 New changeset 2ca26065fb00 by Serhiy Storchaka in branch '3.3': Issue #19886: Us

[issue20132] Many incremental codecs don’t handle fragmented data

2014-01-10 Thread Walter Dörwald
Walter Dörwald added the comment: The best solution IMHO would be to implement real incremental codecs for all of those. Maybe iterencode() with an empty iterator should never call encode()? (But IMHO it would be better to document that iterencode()/iterdecode() should only be used with "real

[issue19887] Path.resolve() fails on complex symlinks

2014-01-10 Thread Philippe Fremy
Philippe Fremy added the comment: Hi, This precise set of tests fails on Windows 7 on a NTFS partition (on revision c0b0e7aef360+ tip ), see below. The problem is probably minor (drive letter case). I won't be able to develop a fix myself, but I'll be happy to test one. cheers, Philippe

[issue19527] Test failures with COUNT_ALLOCS

2014-01-10 Thread Bohuslav "Slavek" Kabrda
Bohuslav "Slavek" Kabrda added the comment: As noted in Misc/SpecialBuilds: COUNT_ALLOCS Each type object grows three new members: /* Number of times an object of this type was allocated. */ int tp_allocs; /* Number of times an object of this type was deallocated. */

[issue19804] test_uuid.TestUUID.test_find_mac() fails

2014-01-10 Thread Bohuslav "Slavek" Kabrda
Bohuslav "Slavek" Kabrda added the comment: Attaching a list of files in /usr/sbin in Fedora's minimal buildroot. (Note, that in Fedora /sbin is a symlink to /usr/sbin.) FWIW I can workaround this issue by adding net-tools to BuildRequires, so this is no big pain for me. -- Added file:

[issue19527] Test failures with COUNT_ALLOCS

2014-01-10 Thread STINNER Victor
STINNER Victor added the comment: What is COUNT_ALLOCS? Python 3.4 now has sys.getallocatedblocks() and a new tracemalloc module which are compiled by default. -- ___ Python tracker __

[issue10388] spwd returning different value depending on privileges

2014-01-10 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: You mean this should be made in 3.4 only? -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue19527] Test failures with COUNT_ALLOCS

2014-01-10 Thread Bohuslav "Slavek" Kabrda
Bohuslav "Slavek" Kabrda added the comment: Since 3.4.0.b2, this also causes failures in another tests: test_io, test_logging, test_threading, test_warnings. There are various cases testing that some types get collected when the interpreter shuts down. I'm attaching a new patch that covers all

[issue10388] spwd returning different value depending on privileges

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I doubt that we can change behavior at this time. -- ___ Python tracker ___ ___ Python-bugs-list m

[issue19077] More robust TemporaryDirectory cleanup

2014-01-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Excellent, Antoine! Here is a patch for 3.3 with tests based on Antoine's patch. My changes to tests: * TemporaryDirectory instance is preserved as attributes of several modules. So some modules can be destroyed before cleaning up temporary directory. * Re

[issue10388] spwd returning different value depending on privileges

2014-01-10 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: LGTM -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue13943] distutils’ build_py fails when package string is unicode

2014-01-10 Thread Boris FELD
Boris FELD added the comment: An issue has been opened in pip repository: https://github.com/pypa/pip/issues/1441 -- ___ Python tracker ___ _

[issue10388] spwd returning different value depending on privileges

2014-01-10 Thread Vajrasky Kok
Vajrasky Kok added the comment: Here is the updated patch addressing Giampaolo's concern. -- Added file: http://bugs.python.org/file33404/fix_error_message_getspall_v2.patch ___ Python tracker _

[issue20173] Derby #4: Convert 53 sites to Argument Clinic across 5 files

2014-01-10 Thread Vajrasky Kok
Vajrasky Kok added the comment: Here is the patch for md5. It got the same issue as sha1. After being clinic-ed, the constructor accepts None value happily. -- Added file: http://bugs.python.org/file33403/clinic_md5module.patch ___ Python tracker

[issue20173] Derby #4: Convert 53 sites to Argument Clinic across 5 files

2014-01-10 Thread Vajrasky Kok
Vajrasky Kok added the comment: Here is the patch for sha512. It got the same issue as sha1. After being clinic-ed, the constructor accepts None value happily. -- Added file: http://bugs.python.org/file33402/clinic_sha512module.patch ___ Python track