[issue20408] memoryview() constructor documentation error

2015-02-25 Thread Demian Brecht
Demian Brecht added the comment: > Oddly, memoryview accepts keyword arguments (for its one required value), and > the name of the argument is "object", not "obj". Positional parameters can also be treated as named arguments. > I think it's plain daft having "object" as a keyword argument. Tr

[issue23526] Silence resource warnings in test_httplib

2015-02-25 Thread Alex Shkop
New submission from Alex Shkop: Three resource warnings are present in test_httplib. Patch closes HTTPSConnection in test_networked_noverification, test_networked_trusted_by_default_cert, test_networked_good_cert. -- components: Tests files: test_httplib_warnings.patch keywords: patch m

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Added comments on Rietveld. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue23510] multiprocessing bug SyncManager and 'with'

2015-02-25 Thread Davin Potts
Davin Potts added the comment: I have a working patch that addresses this behavior and tests to go along with it but am still working on updating the docs. Updating the docs in 2.7 in a way to as closely match the docs in 3.4/3.5 as possible seems reasonable. It remains unclear why __enter__

[issue23525] isbuiltin, isroutine, etc.

2015-02-25 Thread Andrew Barnert
New submission from Andrew Barnert: The documentation and implementation for `inspect.isbuiltin` and related functions do not match. While #4968 attempted to clarify things to make the documentation match the behavior, the actual committed changes are still wrong. `isbuiltin` says "Return true

[issue23524] Use _set_thread_local_invalid_parameter_handler in posixmodule

2015-02-25 Thread Steve Dower
Changes by Steve Dower : Added file: http://bugs.python.org/file38239/23524_1.patch ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue23524] Use _set_thread_local_invalid_parameter_handler in posixmodule

2015-02-25 Thread Steve Dower
New submission from Steve Dower: (Now that VS 2015 CTP 6 is public, here's the second half of #23314.) In posixmodule.c is a big section with the following comment: /* Microsoft CRT in VS2005 and higher will verify that a filehandle is * valid and raise an assertion if it isn't. * Normally, a

[issue15955] gzip, bz2, lzma: add option to limit output size

2015-02-25 Thread Nikolaus Rath
Nikolaus Rath added the comment: Martin, I'll try to review your GzipFile patch. But maybe it would make sense to open a separate issue for this? I think the LZMAFile patch has not yet been reviewed or committed, and we probably want a patch for BZ2File too. The review page is already pretty

[issue23523] cmath.atanh has wrong output

2015-02-25 Thread Benjamin Peterson
Benjamin Peterson added the comment: Both are correct, since atanh requires a branch cut. -- nosy: +benjamin.peterson resolution: -> not a bug status: open -> closed ___ Python tracker

[issue23451] Deprecation warnings building 3.5 Visual Studio Windows 8.1 64 bit

2015-02-25 Thread Steve Dower
Steve Dower added the comment: Anyone got a chance to double-check my patch for me? I think it's fine, unless someone really wants me to turn all the "#ifdef CMSG_LEN" checks into "#ifdef HAVE_CMSG" (which I *think* would require autoconf updates, which I am totally unqualified to do...)

[issue18382] multiprocessing's overlapped PipeConnection issues on Windows 8

2015-02-25 Thread Steve Dower
Steve Dower added the comment: Thanks Davin. I got onto a Windows 8 machine and confirmed the behaviour changed there, so the version check in my patch is correct. Anyone opposed to the extra logic and version check? -- ___ Python tracker

[issue23382] Maybe can not shutdown ThreadPoolExecutor when call the method of shutdown

2015-02-25 Thread Mark Lawrence
Mark Lawrence added the comment: @Miles could you provide the code changes as a unified diff file, and if needed any changes to the test code as well, thanks. -- components: +Library (Lib) -2to3 (2.x to 3.x conversion tool) nosy: +BreamoreBoy type: -> behavior versions: +Python 2.7, Py

[issue21889] https://docs.python.org/2/library/multiprocessing.html#process-and-exceptions doesn't explain exception

2015-02-25 Thread Mark Lawrence
Mark Lawrence added the comment: What is "exception multiprocessing.BufferTooShort" at the bottom of the referenced section? -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue20408] memoryview() constructor documentation error

2015-02-25 Thread Mark Lawrence
Mark Lawrence added the comment: I think it's plain daft having "object" as a keyword argument. Is it too late to do anything about this, or could we go through a deprecation period, or what? -- nosy: +BreamoreBoy versions: +Python 3.5 -Python 3.3 _

[issue23387] test_urllib2 fails with HTTP Error 502: Bad Gateway

2015-02-25 Thread Demian Brecht
Demian Brecht added the comment: LGTM -- nosy: +demian.brecht stage: patch review -> commit review ___ Python tracker ___ ___ Python-b

[issue23254] Document how to close the TCPServer listening socket

2015-02-25 Thread Demian Brecht
Demian Brecht added the comment: Left a couple small nitpicks in Rietveld. Otherwise LGTM. -- nosy: +demian.brecht ___ Python tracker ___

[issue6549] ttk.Style -- minor issues with element_names and configure

2015-02-25 Thread Ethan Furman
Ethan Furman added the comment: Redid patch against current branch, fixing the typos I had in them. Any reason not to move forward? -- nosy: +serhiy.storchaka Added file: http://bugs.python.org/file38238/issue6549.stoneleaf.01.patch ___ Python tracke

[issue23523] cmath.atanh has wrong output

2015-02-25 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti, mark.dickinson, rhettinger, stutzbach ___ Python tracker ___ ___ Python-bugs-list ma

[issue23523] cmath.atanh has wrong output

2015-02-25 Thread 夏熙临
New submission from 夏熙临: When I was using cmath.atanh, I found that this function generates wrong output. For example: >>> import cmath >>> cmath.atanh(-1.89) (-0.5888951591901462+1.5707963267948966j) However, the correct output should be: (-0.5888951591901462-1.5707963267948966j) Clearly, th

[issue20936] test_strftime: enormous allocation, fails under Clang sanitizer

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Can someone provide instructions for compiling python with AddressSanitizer? My naive attempt to run ./configure CC="clang -fsanitize=address" did not work. -- nosy: +belopolsky ___ Python tracker

[issue20703] RuntimeError caused by lazy imports in pdb

2015-02-25 Thread Josh Rosenberg
Josh Rosenberg added the comment: Is this worth fixing? Delve into the innards and you get weird behaviors. If you really need to iterate sys.modules (the example clearly doesn't, but that doesn't mean no one would), you could just copy the parts you need beforehand to get a consistent view, e

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Fixed truediv in issue23521-4.patch. -- Added file: http://bugs.python.org/file38237/issue23521-4.patch ___ Python tracker ___ ___

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I've got it: >>> import sys >>> sys.modules['_datetime'] = None >>> from datetime import * >>> td = timedelta(seconds=1) >>> print(td / (1/0.6112295)) 0:00:00.611230 -- ___ Python tracker

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: >>> td = timedelta(seconds=1) >>> print(td / (1/0.6112295)) 0:00:00.611229 What is wrong with this answer? It is the same as in >>> print(td * 0.6112295) 0:00:00.611229 -- ___ Python tracker

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Brian Kearns
Brian Kearns added the comment: td = timedelta(seconds=1) print(td / (1/0.6112295)) -- ___ Python tracker ___ ___ Python-bugs-list mai

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: > Maybe we should also use divide_and_round for __truediv__ You mean in timedelta / float case, right? You are probably right, but can you provide a test case in which it matters? -- ___ Python tracker

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Brian Kearns
Brian Kearns added the comment: Maybe we should also use divide_and_round for __truediv__ to match the C implementation calling divide_nearest there as well? -- ___ Python tracker _

[issue23516] pip: urllib3 does not encode userinfo section of URL with authentication credentials

2015-02-25 Thread Demian Brecht
Changes by Demian Brecht : -- status: pending -> open title: pip: urllib3 does not encode userinfo section of requests: parse_url() mishandles special characters when the URL specifies authentication credentials -> pip: urllib3 does not encode userinfo section of URL with authenticatio

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: I eliminated floating point arithmetics from the calculation completely and it now matches C. -- Added file: http://bugs.python.org/file38236/issue23521-3.patch ___ Python tracker

[issue23516] pip: urllib3 does not encode userinfo section of requests: parse_url() mishandles special characters when the URL specifies authentication credentials

2015-02-25 Thread Demian Brecht
Demian Brecht added the comment: FWIW, setting up a local authenticated (ncsa_auth) squid proxy, this breaks using pip 0.6.8: pip --proxy http://special:my?password@localhost:3128 install While the percent-encoded version is successful: pip --proxy http://special:my%3Fpassword@localhost:3128

[issue21293] Remove "capsule hack" from object.c?

2015-02-25 Thread Mark Lawrence
Mark Lawrence added the comment: I've taken a bit of a liberty and picked the names of the last three guys who've worked on this file as I assume they're best qualified to comment. -- nosy: +BreamoreBoy, haypo, ncoghlan, pitrou ___ Python tracker

[issue20780] Shadowed (duplicate name but different body) test in test_statistics

2015-02-25 Thread Benjamin Peterson
Benjamin Peterson added the comment: The duplicate tests have been renamed already. -- nosy: +benjamin.peterson resolution: -> out of date status: open -> closed ___ Python tracker

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: > the bug in C implementation should be fixed. In the past (see #8860) we were not able to reach a consensus on which behavior is correct and which has a bug: >>> timedelta(seconds=1)*0.6112295 datetime.timedelta(0, 0, 611229) >>> timedelta(seconds=0.611

[issue20780] Shadowed (duplicate name but different body) test in test_statistics

2015-02-25 Thread Mark Lawrence
Mark Lawrence added the comment: @Steven would you like to formally review the patch please. At a very quick glance it looks okay to me. -- nosy: +BreamoreBoy ___ Python tracker __

[issue21201] Uninformative error message in multiprocessing.Manager()

2015-02-25 Thread Mark Lawrence
Mark Lawrence added the comment: Can someone review the patch with a view to commit please. It's a change to one line as explained in msg215934. -- nosy: +BreamoreBoy ___ Python tracker __

[issue7159] Urllib2 authentication memory.

2015-02-25 Thread Mark Lawrence
Mark Lawrence added the comment: @Senthil what is your opinion of this? -- nosy: +BreamoreBoy type: behavior -> resource usage versions: +Python 3.4, Python 3.5 -Python 3.1, Python 3.2 ___ Python tracker ___

[issue20936] test_strftime: enormous allocation, fails under Clang sanitizer

2015-02-25 Thread Mark Lawrence
Changes by Mark Lawrence : -- type: -> resource usage ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue20683] Add example to tutorial namespace doc, section 9.2

2015-02-25 Thread Mark Lawrence
Mark Lawrence added the comment: What is wrong with the example given here https://docs.python.org/3/tutorial/classes.html#scopes-and-namespaces-example ? -- nosy: +BreamoreBoy ___ Python tracker _

[issue23515] Bad logic in timsort's merge_collapse

2015-02-25 Thread Tim Peters
Tim Peters added the comment: Thanks, Terry! Absolutely agreed: a logical error is an error, and will bite us eventually, regardless of whether it does so today. I'm very glad the researchers went to all the trouble to analyze this one :-) -- ___

[issue20703] RuntimeError caused by lazy imports in pdb

2015-02-25 Thread Mark Lawrence
Mark Lawrence added the comment: I can reproduce this on Windows 8.1 with 3.4.3 but cannot do so with 3.5.0a1. -- nosy: +BreamoreBoy versions: +Python 3.5 ___ Python tracker ___

[issue23515] Bad logic in timsort's merge_collapse

2015-02-25 Thread Terry J. Reedy
Terry J. Reedy added the comment: I sent a note to the lead author Stijn de Gouw and mentioned that the repository has moved from svn to hg.python.org. This change may be moot, but I think it worth our effort to keep our code as clean as possible and to encourage automated code checks, as we h

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. But the bug in C implementation should be fixed. -- ___ Python tracker ___ ___ Python-bugs-l

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: > You can use self._to_microseconds(). Right. Did that and added a simple test. -- Added file: http://bugs.python.org/file38235/issue23521-2.patch ___ Python tracker __

[issue23522] Misleading note in Statistics module documentation

2015-02-25 Thread SilentGhost
Changes by SilentGhost : -- nosy: +steven.daprano ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: You can use self._to_microseconds(). -- nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-

[issue23522] Misleading note in Statistics module documentation

2015-02-25 Thread Jake
New submission from Jake: In the statistics module documentation, there is a note that states that "The mean is strongly affected by outliers and is not a robust estimator for central location: the mean is not necessarily a typical example of the data points. For more robust, although less ef

[issue23496] Steps for Android Native Build of Python 3.4.2

2015-02-25 Thread Ryan Gonzalez
Ryan Gonzalez added the comment: That's what I was saying; I'll update the patches myself. I highly doubt Cyd wants to re-port Python again. :0 I'll ask on python-dev on which would be preferred: configure.ac edits or macro tests. -- ___ Python tra

[issue23517] datetime.utcfromtimestamp parses timestamps incorrectly

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: > For example, in my local patch, I'm using ROUND_FLOOR for: > - datetime.date.fromtimestamp() > - datetime.datetime.fromtimestamp() These should use ROUND_HALF_EVEN > - datetime.datetime.now() > - datetime.datetime.utcnow() These should not involve flo

[issue23517] datetime.utcfromtimestamp parses timestamps incorrectly

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: > I don't understand "nearest". Sorry for using loose terms. I was hoping the in the context of "going back", it would be clear. I believe the correct mode is "ROUND_HALF_EVEN". This is the mode used by the builtin round() function: >>> round(0.5) 0

[issue23517] datetime.utcfromtimestamp parses timestamps incorrectly

2015-02-25 Thread STINNER Victor
STINNER Victor added the comment: > What do you mean by "currently"? What versions of python have it wrong? I search for "ROUND" in Modules/_datetimemodule.c: in the Python development branch (default), I found _PyTime_ROUND_DOWN (Round towards zero). Since a bug was reported, I understand th

[issue23517] datetime.utcfromtimestamp parses timestamps incorrectly

2015-02-25 Thread STINNER Victor
STINNER Victor added the comment: > Would you consider going back to round to nearest? I don't understand "nearest". I prefer to use names of decimal rounding modes: https://docs.python.org/dev/library/decimal.html#rounding-modes In my local patch, I'm using ROUND_FLOOR in _decimal: "Round towa

[issue23517] datetime.utcfromtimestamp parses timestamps incorrectly

2015-02-25 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- keywords: +3.3regression -3.2regression ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Attached patch fixes the issue, but produces a slightly different result: >>> timedelta(seconds=1)*0.6112295 datetime.timedelta(0, 0, 611230) Note that C implementation is probably buggy: >>> from datetime import * >>> timedelta(seconds=1)*0.6112295 date

[issue13077] Unclear behavior of daemon threads on main thread exit

2015-02-25 Thread Vandana Rao
Vandana Rao added the comment: Since the program depends on receiving a raw ^C == 0x03 on stdin, it will never be running under Idle because the Idle process tk gui normally keeps control of keyboard input and the Idle process code intercepts ^C and turns it into KeyboardInterrupt raised in th

[issue18199] Windows: support path longer than 260 bytes using "\\?\" prefix

2015-02-25 Thread Aaron Meurer
Changes by Aaron Meurer : -- nosy: +Aaron.Meurer ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue23515] Bad logic in timsort's merge_collapse

2015-02-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your explanation Tim. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +bdkearns, benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue23515] Bad logic in timsort's merge_collapse

2015-02-25 Thread Tim Peters
Tim Peters added the comment: Since it's impossible to trigger the error on any current machine anyway (no machine has enough memory), increasing the size of the stack would be absurd. If you read the paper, they note that this is what the Java folks first did (they changed this part of timso

[issue23521] OverflowError from timedelta * float in datetime.py

2015-02-25 Thread Alexander Belopolsky
New submission from Alexander Belopolsky: >>> import sys >>> sys.modules['_datetime'] = None >>> from datetime import timedelta >>> timedelta(seconds=1)*0.6112295 Traceback (most recent call last): File "", line 1, in File "/Users/a/Work/cpython/Lib/datetime.py", line 519, in __mul__ ret

[issue20323] Argument Clinic: docstring_prototype output causes build failure on Windows

2015-02-25 Thread Steve Dower
Steve Dower added the comment: You need to leave static out of the forward definition and then add it in the initialization. The variable is not accessible from other object files - I checked. "const char[]" and "static const char[]" should work the same, though I haven't tried it. -

[issue14721] httplib doesn't specify content-length header for POST requests without data

2015-02-25 Thread James Rutherford
James Rutherford added the comment: The fix for this still doesn't set Content-Length to zero when body is None, but I don't see any reason why this should be the case. For example, the following snippet would work for any 'empty' body: if 'content-length' not in header_names: self._set_co

[issue20323] Argument Clinic: docstring_prototype output causes build failure on Windows

2015-02-25 Thread Zachary Ware
Zachary Ware added the comment: That may be for the best. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue20323] Argument Clinic: docstring_prototype output causes build failure on Windows

2015-02-25 Thread Zachary Ware
Zachary Ware added the comment: (My last comment was aimed at Larry's comment about abandoning two-pass...) -- ___ Python tracker ___

[issue20323] Argument Clinic: docstring_prototype output causes build failure on Windows

2015-02-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: What if add "const" in PyDoc_VAR? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue20323] Argument Clinic: docstring_prototype output causes build failure on Windows

2015-02-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: You forgot "static" in the declaration Steve. -- ___ Python tracker ___ ___ Python-bugs-list maili

[issue23517] datetime.utcfromtimestamp parses timestamps incorrectly

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Victor, Would you consider going back to round to nearest? Mark and I put in a lot of effort to get the rounding in the datetime module right. (See for example, #8860.) Sub-microsecond timesources are still rare and users who work with such should av

[issue20323] Argument Clinic: docstring_prototype output causes build failure on Windows

2015-02-25 Thread Larry Hastings
Larry Hastings added the comment: Perhaps, now that Guido allows us to redirect into a separate file, we should simply abandon the two-pass approach. -- ___ Python tracker ___ _

[issue20323] Argument Clinic: docstring_prototype output causes build failure on Windows

2015-02-25 Thread Steve Dower
Steve Dower added the comment: Not sure how helpful this is, but the following code compiles fine for me (VC 12.0 and 14.0): #include char myStr[]; struct { char* a; } myStruct = { myStr }; int main() { printf("%s", myStruct.a); return 0; } static char myStr[] = "123456789"; Any re

[issue23519] using asyncio.iscoroutinefunction() on a functools.partial object

2015-02-25 Thread Guido van Rossum
Guido van Rossum added the comment: I recall discussing this before (maybe on the tulip list). I am firmly against. It is a slippery slope -- why inspect a partial but not a lambda? Plus there is no use case. -- ___ Python tracker

[issue23515] Bad logic in timsort's merge_collapse

2015-02-25 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: How additional test affects performance? May be just increase MAX_MERGE_PENDING? -- nosy: +serhiy.storchaka ___ Python tracker ___ ___

[issue23511] Broken code example in email module documentation

2015-02-25 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Baptiste. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed type: -> enhancement ___ Python tracker ___

[issue23517] datetime.utcfromtimestamp parses timestamps incorrectly

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: > I noticed that the rounding mode of datetime is currently wrong. What do you mean by "currently"? What versions of python have it wrong? -- ___ Python tracker ___

[issue23511] Broken code example in email module documentation

2015-02-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 89c6a6c2dd1f by Berker Peksag in branch '3.4': Issue #23511: Port email-simple.py to Python 3. https://hg.python.org/cpython/rev/89c6a6c2dd1f New changeset cb911e1fb3dc by Berker Peksag in branch 'default': Issue #23511: Port email-simple.py to Pyth

[issue23515] Bad logic in timsort's merge_collapse

2015-02-25 Thread Tim Peters
Tim Peters added the comment: @Benjamin, bless you for changing their "n-1 > 0" to "n > 1", and for adding parentheses to make the intended grouping obvious instead of a puzzle, and for swapping the addends on the RHS of the new test. Thank you - perfect :-) -- __

[issue23517] datetime.utcfromtimestamp parses timestamps incorrectly

2015-02-25 Thread STINNER Victor
STINNER Victor added the comment: I started a large change set to support nanoseconds in the C "pytime" API: see the issue #22117. While working on this change, I noticed that the rounding mode of datetime is currently wrong. Extract of a private patch: typedef enum { /* Round towards zero

[issue23283] Backport Tools/clinic to 3.4

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20185] Derby #17: Convert 49 sites to Argument Clinic across 13 files

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue23517] datetime.utcfromtimestamp parses timestamps incorrectly

2015-02-25 Thread Alexander Belopolsky
Changes by Alexander Belopolsky : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue20264] Update patchcheck to looks for files with clinic comments

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue23517] datetime.utcfromtimestamp parses timestamps incorrectly

2015-02-25 Thread Alexander Belopolsky
Alexander Belopolsky added the comment: Victor's motivation for the change was (msg154811): """ I chose this rounding method because it is the method used by int(float) and int(time.time()) is a common in programs (more than round(time.time()). Rounding towards zero avoids also producing times

[issue23500] Argument Clinic: multiple macro definition

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue21314] Document '/' in signatures

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20180] Derby #11: Convert 50 sites to Argument Clinic across 9 files

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20183] Derby #14: Convert 41 sites to Argument Clinic across 5 files

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20586] Argument Clinic: functions with valid sig but no docstring have no __text_signature__

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue23496] Steps for Android Native Build of Python 3.4.2

2015-02-25 Thread Cyd Haselton
Cyd Haselton added the comment: Thanks for that suggestion R. David...that would be ideal given the 2.x requirements of Mercurial would mean i'd need to re-port Python before tackling a port of Mercurial. I'll wait until Ryan chimes in before I start serious work with git, just in case.

[issue20181] Derby #12: Convert 50 sites to Argument Clinic across 4 files

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue23492] Argument Clinic: improve generated parser for 1-argument functions

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20184] Derby #16: Convert 50 sites to Argument Clinic across 9 files

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20148] Derby: Convert the _sre module to use Argument Clinic

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue23501] Argument Clinic: generate code into separate files by default

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20174] Derby #5: Convert 50 sites to Argument Clinic across 3 files

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20341] Argument Clinic: add "nullable ints"

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20291] Argument Clinic should understand *args and **kwargs parameters

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20323] Argument Clinic: docstring_prototype output causes build failure on Windows

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic nosy: +steve.dower, tim.golden ___ Python tracker ___ ___ Python-bugs-li

[issue20186] Derby #18: Convert 31 sites to Argument Clinic across 23 files

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20432] Argument Clinic: when cloning functions with path_t, path_t retains the old name

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20459] No Argument Clinic documentation on how to specify a return converter

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20396] Argument Clinic: Touch source file if any output file changed

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue20177] Derby #8: Convert 28 sites to Argument Clinic across 2 files

2015-02-25 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- components: +Argument Clinic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

  1   2   >