[issue2661] Mapping tests cannot be passed by user implementations

2014-06-29 Thread Walter Dörwald
Walter Dörwald added the comment: Here is a patch that implements suggestion 2 and 3. -- keywords: +patch Added file: http://bugs.python.org/file35800/mapping-tests.diff ___ Python tracker __

[issue18588] timeit examples should be consistent

2014-06-29 Thread Ezio Melotti
Ezio Melotti added the comment: I tried to run those timings again and the values I got from the terminal are close to the ones I got from the interactive interpreter. I'm not sure why when I wrote those examples I got such different values. It would be fine with me to update them and avoid conf

[issue13963] dev guide has no mention of mechanics of patch review

2014-06-29 Thread Ezio Melotti
Ezio Melotti added the comment: If someone familiar with rietveld wants to propose a patch I will review and apply it, otherwise it might take a while before I can get to it. The patch should include these things: 1) how to make a patch that works with rietveld (this might already be mentioned

[issue10765] Build regression from automation changes on windows

2014-06-29 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +haypo, steve.dower, zach.ware ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue21575] list.sort() should show arguments in tutorial

2014-06-29 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: -> resolved type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue21429] Input.output error with multiprocessing

2014-06-29 Thread Ezio Melotti
Changes by Ezio Melotti : -- status: open -> pending ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue7094] Add alternate float formatting styles to new-style formatting.

2014-06-29 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: patch review -> resolved ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: htt

[issue21213] Memory bomb by incorrect custom serializer to json.dumps

2014-06-29 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: -> resolved ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue16701] Docs missing the behavior of += (in-place add) for lists.

2014-06-29 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue21358] Augmented assignment doc: clarify 'only evaluated once'

2014-06-29 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue5862] multiprocessing 'using a remote manager' example errors and possible 'from_address' code leftover

2014-06-29 Thread Berker Peksag
Berker Peksag added the comment: This has already been fixed in issue 3518: https://docs.python.org/3.4/library/multiprocessing.html#using-a-remote-manager -- nosy: +berker.peksag resolution: -> duplicate stage: needs patch -> resolved status: open -> closed superseder: -> multip

[issue7506] multiprocessing.managers.BaseManager.__reduce__ references BaseManager.from_address

2014-06-29 Thread Berker Peksag
Berker Peksag added the comment: This has already been fixed in c2910971eb86 (see issue 3518). -- nosy: +berker.peksag resolution: -> out of date stage: needs patch -> resolved status: open -> closed ___ Python tracker

[issue12378] smtplib.SMTP_SSL leaks socket connections on SSL error

2014-06-29 Thread Giampaolo Rodola'
Giampaolo Rodola' added the comment: > @Giampaolo can you add anything to this? As for smptd encoding error I think a reasonable thing to do would be to reply with "501 Can't decode command.". There's no way for the server to return a more specific error message (e.g. "SSL is not supported").

[issue20753] disable test_robotparser test that uses an invalid URL

2014-06-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0e08ca451b34 by Berker Peksag in branch '3.4': Issue #20753: Skip PasswordProtectedSiteTestCase when Python is built without threads. http://hg.python.org/cpython/rev/0e08ca451b34 New changeset 394e6bda5a70 by Berker Peksag in branch 'default': Iss

[issue12660] test_gdb fails when installed

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: The changeset referenced in msg160074 is still in default, can someone pick this up please. -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue11882] test_imaplib failed on x86 ubuntu

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Is there any work to be done here or can this be closed? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker _

[issue15933] flaky test in test_datetime

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: The patch LGTM, can we have a commit review please. -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue14547] Python symlink to script behaves unexpectedly

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: I've removed Tests from the components list as I don't think it belongs there. -- components: -Tests nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker

[issue14817] pkgutil.extend_path has no tests

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: @Eric will you pick this up again? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list

[issue13617] Reject embedded null characters in wchar* strings

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: @Victor can you pick this up again please. -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bu

[issue13849] Add tests for NUL checking in certain strs

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: The type and versions fields have been set to what I think they ought to be, as I couldn't find any reference to this issue on python-dev. Note that #13848 is closed as fixed and I've asked Victor if he can pick up #13617. -- nosy: +BreamoreBoy type:

[issue21879] str.format() gives poor diagnostic on placeholder mismatch

2014-06-29 Thread Roy Smith
New submission from Roy Smith: https://mail.python.org/pipermail/python-list/2014-June/674188.html -- messages: 221846 nosy: roysmith priority: normal severity: normal status: open title: str.format() gives poor diagnostic on placeholder mismatch ___

[issue21879] str.format() gives poor diagnostic on placeholder mismatch

2014-06-29 Thread Roy Smith
Roy Smith added the comment: (ugh, hit return too soon) >>> '{1}'.format() Traceback (most recent call last): File "", line 1, in IndexError: tuple index out of range This is a confusing error message. The user hasn't written any tuples, so a message about a tuple index out of range will j

[issue14261] Cleanup in smtpd module

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: @Michele as 8739 has been implemented would you like to put up a patch for this? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 ___ Python tracker _

[issue15836] unittest assertRaises should verify excClass is actually a BaseException class

2014-06-29 Thread R. David Murray
R. David Murray added the comment: Ezio requested I comment on his suggestion: I still prefer the try/except form, but I don't feel strongly about it. -- ___ Python tracker ___

[issue14771] Occasional failure in test_ioctl when run parallel with test_gdb

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: @Antoine/Serhiy I believe that you'd want to follow up on this. -- nosy: +BreamoreBoy ___ Python tracker ___

[issue11882] test_imaplib failed on x86 ubuntu

2014-06-29 Thread R. David Murray
R. David Murray added the comment: Since we can't reproduce it and have had no response from the OP for over a year, it is indeed time to close this one. -- resolution: not a bug -> works for me status: open -> closed ___ Python tracker

[issue3170] test_pydoc has no way to regenerate pristine data

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Is this still an issue? I'd try to reproduce it myself but there is very little data in the original report. -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.0 ___ Python tracker

[issue11886] test_time.test_tzset() fails on "x86 FreeBSD 7.2 3.x": AEST timezone called "EST"

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as "out of date"? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-lis

[issue7665] test_urllib2 and test_ntpath fail if path contains "\"

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Can someone try to reproduce these on 2.7 as I no longer have it set up. If both problems can be reproduced I think the test_urllib2 problem should be dealt with here and a new issue opened for test_ntpath. -- nosy: +BreamoreBoy __

[issue21879] str.format() gives poor diagnostic on placeholder mismatch

2014-06-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: IndexError should be caught and replaced with something like ValueError('format string requests argument not passed') or TypeError('arguments do not match format string') or more specific TypeError('format string requests at least %d positional arguments, only %d

[issue15750] test_localtime_daylight_false_dst_true raises OverflowError: mktime argument out of range

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Are these tests still failing, can this issue be closed as "out of date" or what? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker ___

[issue11886] test_time.test_tzset() fails on "x86 FreeBSD 7.2 3.x": AEST timezone called "EST"

2014-06-29 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue15750] test_localtime_daylight_false_dst_true raises OverflowError: mktime argument out of range

2014-06-29 Thread STINNER Victor
STINNER Victor added the comment: I don't see the issue anymore, I guess that it was fixed. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-06-29 Thread R. David Murray
R. David Murray added the comment: If deactivating the AV/firewall doesn't change the behavior, it is presumably a different problem. But let's see what Claudiu has to say, since he was able to reproduce and then circumvent the original problem. -- ___

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-06-29 Thread Claudiu Popa
Claudiu Popa added the comment: Terry is right, this patch doesn't completely work. But with this fix the problem is solved: diff -r 394e6bda5a70 Lib/test/test_httpservers.py --- a/Lib/test/test_httpservers.py Sun Jun 29 15:56:21 2014 +0300 +++ b/Lib/test/test_httpservers.py Sun Jun 2

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-06-29 Thread Claudiu Popa
Claudiu Popa added the comment: Although it is incorrect, because the test specifically tests case sensitivity. -- ___ Python tracker ___

[issue21429] Input.output error with multiprocessing

2014-06-29 Thread ProgVal
ProgVal added the comment: The relevant piece of code: https://github.com/ProgVal/Limnoria/blob/master/plugins/Web/plugin.py#L85 commands.process is defined here: https://github.com/ProgVal/Limnoria/blob/master/src/commands.py#L76 callbacks.CommandProcess is defined at https://github.com/Pro

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-06-29 Thread R. David Murray
R. David Murray added the comment: What if you use 'custom' instead? -- resolution: fixed -> stage: resolved -> needs patch status: closed -> open ___ Python tracker ___ ___

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-06-29 Thread Claudiu Popa
Claudiu Popa added the comment: It works with 'custom'. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue21090] File read silently stops after EIO I/O error

2014-06-29 Thread ivank
ivank added the comment: I managed to reproduce this again, this time by corrupting data on a btrfs filesystem. $ cat read_error_file.py import os fname = "/usr/bin/Xorg" size = os.stat(fname).st_size print fname, "stat size:", size f = open(fname, "rb") print "len(f.read()): ", len(f.rea

[issue21090] File read silently stops after EIO I/O error

2014-06-29 Thread ivank
ivank added the comment: This problem happens with Python 3.4 as well. $ cat read_error_file.py from __future__ import print_function import os fname = "/usr/bin/Xorg" size = os.stat(fname).st_size print(fname, "stat size:", size) f = open(fname, "rb") print("len(f.read()): ", len(f.read()))

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-06-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: Both 'gets' and 'custom' work on my machine. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue3702] test_urllib2.test_trivial fails when run from another Windows drive

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: I no longer have a 2.7 setup so can someone else try to reproduce this problem. -- nosy: +BreamoreBoy versions: +Python 2.7 -Python 3.2, Python 3.3 ___ Python tracker ___

[issue12750] datetime.strftime('%s') should respect tzinfo

2014-06-29 Thread akira
akira added the comment: > Can you explain why math.floor rather than builtin round is the correct > function to use? To avoid breaking existing scripts that use `.strftime('%s')` on Linux, OSX, see msg221385: >>> from datetime import datetime, timezone >>> dt = datetime(1969, 1, 1, 0,0,0,

[issue14904] test_unicode_repr_oflw (in test_bigmem) crashes

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Has anybody got a machine with enough RAM to be able to debug this now as I certainly haven't? -- nosy: +BreamoreBoy ___ Python tracker ___

[issue15152] test_subprocess failures on awfully slow builtbots

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Does this issue need to be addressed, can it be closed as "out of date" or what? -- nosy: +BreamoreBoy title: test_subprocess fqailures on awfully slow builtbots -> test_subprocess failures on awfully slow builtbots versions: +Python 3.4, Python 3.5 -Pyt

[issue15243] Misleading documentation for __prepare__

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Does the documentation need amending, yes or no? -- components: -Tests nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker _

[issue12750] datetime.strftime('%s') should respect tzinfo

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Here is the simpler demonstration of the "floor" behavior on Linux: >>> from datetime import datetime >>> datetime.fromtimestamp(-0.1).strftime('%s') '-1' >>> datetime.fromtimestamp(-1.1).strftime('%s') '-2' >>> datetime.fromtimestamp(0.1).strftime('%s') '

[issue12750] datetime.strftime('%s') should respect tzinfo

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Could you, please add tests for non-fixed offset timezones? There are several defined in datetimetester.py already. -- versions: +Python 3.5 -Python 3.3 ___ Python tracker

[issue13413] time.daylight incorrect behavior in linux glibc

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Could one of our timezone gurus respond to this please. -- components: +Library (Lib) nosy: +BreamoreBoy versions: +Python 2.7, Python 3.4, Python 3.5 ___ Python tracker ___

[issue12750] datetime.strftime('%s') should respect tzinfo

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: The patch should update documentation. See https://docs.python.org/3.5/library/datetime.html#strftime-and-strptime-behavior -- ___ Python tracker __

[issue21880] IDLE: Ability to run 3rd party code checkers

2014-06-29 Thread Saimadhav Heblikar
New submission from Saimadhav Heblikar: (This issue is continuation of http://bugs.python.org/issue18704) This issue is about a feature to execute any 3rd party code checker from within IDLE. I am attaching an initial patch(so as to get reviews, is functional logic wise, but missing a lot UI/

[issue12750] datetime.strftime('%s') should respect tzinfo

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: +t = datetime(1969, 1, 1, 0,0,0, 60, tzinfo=timezone.utc) Please add spaces after commas. -- ___ Python tracker ___ _

[issue13668] mute ImportError in __del__ of _threading_local module

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as a result of #9707 and r64543 ? -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue21855] Fix decimal in unicodeless build

2014-06-29 Thread Mark Dickinson
Changes by Mark Dickinson : -- nosy: +skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue21855] Fix decimal in unicodeless build

2014-06-29 Thread Mark Dickinson
Mark Dickinson added the comment: Looks fine to me. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue13649] termios.ICANON is not documented

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: I'm inclined to close as "won't fix" as the third paragraph of the docs states "This module also defines all the constants needed to work with the functions provided here; these have the same name as their counterparts in C. Please refer to your system document

[issue13689] fix CGI Web Applications with Python link in howto/urllib2

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Footnote [1] here https://docs.python.org/3/howto/urllib2.html still refers to the pyzine link. Can we have this changed please. -- nosy: +BreamoreBoy ___ Python tracker _

[issue7671] test_popen fails if path contains special char like ";"

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Can this be closed as "out of date"? -- nosy: +BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list

[issue15748] Various symlink test failures in test_shutil on FreeBSD

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Is any action needed here to take this forward, can it be closed as "out of date" or what? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker __

[issue15617] FAIL: test_create_connection (test.test_socket.NetworkConnectionNoServer)

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: I'm guessing that this would have been resolved some time ago, am I correct? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker _

[issue13413] time.daylight incorrect behavior in linux glibc

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I think this is out-of-date. On Mac OS X, I get ``` $ python3 -V Python 3.4.1 $ TZ=Europe/Moscow python3 -c "import time; print(time.daylight)" 0 ``` I'll check on Linux now ... -- ___ Python tracker

[issue13413] time.daylight incorrect behavior in linux glibc

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Same result on a freshly compiled Python 3.4.1 (default, Jun 29 2014, 15:26:46) [GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux $ TZ=Europe/Moscow ~/Apps/bin/python3 -c "import time; print(time.daylight)" 0 I suspect that the problem was with OP's system

[issue21881] python cannot parse tcl value

2014-06-29 Thread Andreas Schwab
New submission from Andreas Schwab: Lib/test/test_tcl.py fails with: test test_tcl failed -- Traceback (most recent call last): File "/home/abuild/rpmbuild/BUILD/Python-2.7.7/Lib/test/test_tcl.py", line 430 , in test_user_command check(float('nan'), 'NaN', eq=nan_eq) File "/home/abuild/r

[issue13413] time.daylight incorrect behavior in linux glibc

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: > But python detect daylight flag as differences between January and July > localtime. This is the best we can do because time.daylight is a constant and this does not work in locations like Moscow where daylight rules were adopted ~ 30 years ago and la

[issue13413] time.daylight incorrect behavior in linux glibc

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I suspect there will be another period soon when time.daylight logic will break after Europe/Moscow goes back to winter time (hopefully for good). There is no solution of this issue within constraints of the time module. See issue9527 for how it was sol

[issue21871] Python 2.7.7 regression in mimetypes read_windows_registry

2014-06-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset ee33d61f5e4b by Benjamin Peterson in branch '2.7': add a test for access errors from OpenKey (closes #21871) http://hg.python.org/cpython/rev/ee33d61f5e4b -- nosy: +python-dev resolution: -> fixed stage: -> resolved status: open -> closed

[issue21652] Python 2.7.7 regression in mimetypes module on Windows

2014-06-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1aafbdfba25a by Benjamin Peterson in branch '2.7': don't allow unicode into type_map on Windows (closes #21652) http://hg.python.org/cpython/rev/1aafbdfba25a -- resolution: -> fixed stage: -> resolved status: open -> closed __

[issue21652] Python 2.7.7 regression in mimetypes module on Windows

2014-06-29 Thread Benjamin Peterson
Benjamin Peterson added the comment: Thanks Vladimir; I really appreciate your work on these issues. -- ___ Python tracker ___ ___ Pyt

[issue20155] Regression test test_httpservers fails, hangs on Windows

2014-06-29 Thread Jeff Allen
Jeff Allen added the comment: Disabling the AV/firewall did not stop the symptoms when I was investigating originally. In order to get the unmodified test to pass, I had to stop the BFE (base filtering engine), which I think may have been given new rules or behaviours as a result of installing

[issue9051] Improve pickle format for aware datetime instances

2014-06-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +alexandre.vassalotti, haypo, pitrou ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue9004] datetime.utctimetuple() should not set tm_isdst flag to 0

2014-06-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +lemburg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue9004] datetime.utctimetuple() should not set tm_isdst flag to 0

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Reclassifying this as a doc issue. -- components: +Documentation -Extension Modules stage: test needed -> needs patch versions: +Python 3.5 -Python 3.3 ___ Python tracker

[issue15617] FAIL: test_create_connection (test.test_socket.NetworkConnectionNoServer)

2014-06-29 Thread STINNER Victor
STINNER Victor added the comment: > I'm guessing that this would have been resolved some time ago, am I correct? You should not guess but check last builds of "SPARC Solaris 10 OpenCSW 3.x" to see if the issue stil occurs. http://buildbot.python.org/all/waterfall?category=3.x.stable&category=3

[issue9004] datetime.utctimetuple() should not set tm_isdst flag to 0

2014-06-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- keywords: +easy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue10941] imaplib: Internaldate2tuple produces wrong result if date is near a DST change

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: David, Is there anything left to do here that is not covered by issue 11024? -- ___ Python tracker ___ __

[issue10941] imaplib: Internaldate2tuple produces wrong result if date is near a DST change

2014-06-29 Thread R. David Murray
R. David Murray added the comment: Not that I can see. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue1062277] Pickle breakage with reduction of recursive structures

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Problem "B" has been resolved, but problem "A" is still there. Python 3.4.1 (default, Jun 29 2014, 15:26:46) [GCC 4.4.7 20120313 (Red Hat 4.4.7-4)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> class C: ... def __i

[issue2571] can cmd.py's API/docs for the use of an alternate stdin be improved?

2014-06-29 Thread Éric Araujo
Éric Araujo added the comment: I won’t have the time to do the docs/tests inspection I wanted to do. -- assignee: eric.araujo -> ___ Python tracker ___ __

[issue9860] Building python outside of source directory fails

2014-06-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___ ___

[issue15617] FAIL: test_create_connection (test.test_socket.NetworkConnectionNoServer)

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: By following the link I finally get to see "No current builds. Pending Build Requests: (Apr 30 15:07:05, waiting 1445 hrs, 32 mins, 26 secs)". Is there any way that I can tell from the display whether or not the failures are related to this issue? --

[issue15907] move doctest test-data files into a subdirectory of Lib/test

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: @Chris can you provide a patch for this? -- nosy: +BreamoreBoy type: -> enhancement versions: +Python 3.5 -Python 3.4 ___ Python tracker ___ ___

[issue21833] Fix unicodeless build of Python

2014-06-29 Thread Tshepang Lekhonkhobe
Changes by Tshepang Lekhonkhobe : -- nosy: +tshepang ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue1820] Enhance Object/structseq.c to match namedtuple and tuple api

2014-06-29 Thread Stefan Krah
Stefan Krah added the comment: Andrew, thanks for signing the agreement! [Sunny] > Is this what you expect? I find the initialization in os.stat_result somewhat strange. Also, a certain use of unnamed fields that worked in 2.5 is now broken, which we should sort out before proceeding any furth

[issue15873] datetime: add ability to parse RFC 3339 dates and times

2014-06-29 Thread karl
karl added the comment: After inspections, the best library for parsing RFC3339 style date is definitely: https://github.com/tonyg/python-rfc3339/ Main code at https://github.com/tonyg/python-rfc3339/blob/master/rfc3339.py -- ___ Python tracker

[issue16510] Using appropriate checks in tests

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Can we follow up on this please as it's referenced from #9554 as well. -- nosy: +BreamoreBoy ___ Python tracker ___ _

[issue18864] Implementation for PEP 451 (importlib.machinery.ModuleSpec)

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Given that PEP 451 is listed in the "Finished PEPs (done, implemented in code repository)" section of the PEP index can we close this and associated issues out? -- nosy: +BreamoreBoy ___ Python tracker

[issue10541] regrtest.py -T broken

2014-06-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- versions: +Python 3.5 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue10541] regrtest.py -T broken

2014-06-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- stage: patch review -> commit review ___ Python tracker ___ ___ Python-bugs-list mailing list Uns

[issue10541] regrtest.py -T broken

2014-06-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 10cf594ace4b by Alexander Belopolsky in branch 'default': Fixes #10541: regrtest -T is broken http://hg.python.org/cpython/rev/10cf594ace4b -- nosy: +python-dev ___ Python tracker

[issue10541] regrtest.py -T broken

2014-06-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue20858] Enhancements/fixes to pure-python datetime module

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Brian, I would like to apply your changes for 3.5. Do you have any updates? -- stage: patch review -> commit review versions: +Python 3.5 -Python 3.3, Python 3.4 ___ Python tracker

[issue21778] PyBuffer_FillInfo() from 3.3

2014-06-29 Thread Roundup Robot
Roundup Robot added the comment: New changeset 49cdb04bfcc6 by Stefan Krah in branch '3.4': Issue #21778: Clarify use of flags if PyBuffer_FillInfo() is used inside a http://hg.python.org/cpython/rev/49cdb04bfcc6 -- nosy: +python-dev ___ Python track

[issue21778] PyBuffer_FillInfo() from 3.3

2014-06-29 Thread Stefan Krah
Changes by Stefan Krah : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue8902] add datetime.time.now() for consistency

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I would like to bring this issue to some conclusion. Here is the summary: Pro: datetime.time.now() is shorter than datetime.datetime.now().time() Cons: 1. date, time = datetime.date.today(), datetime.time.now() is attractive, but wrong. 2. tim

[issue9554] test_argparse.py: use new unittest features

2014-06-29 Thread Mark Lawrence
Mark Lawrence added the comment: Latest patch LGTM so can we have a commit review please. -- nosy: +BreamoreBoy ___ Python tracker ___

[issue1812] doctest _load_testfile function -- newline handling seems incorrect

2014-06-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- assignee: belopolsky -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue3173] external strftime for Python?

2014-06-29 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- assignee: belopolsky -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue10446] pydoc3 links to 2.x library reference

2014-06-29 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: MODULE DOCS section is no longer present in pydoc generated pages. -- resolution: accepted -> out of date status: open -> closed ___ Python tracker __

  1   2   >