[issue22627] Calling timestamp() on a datetime object modifies the timestamp of a different datetime object.

2014-10-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: This has nothing to do with the datetime module. Attached script reduces the issue to a bug (?) in time.mktime() with the corresponding timezone. time.mktime() is a thin wrapper around the C library's mktime() function, so it is probably not a bug in Python

[issue22627] Calling timestamp() on a datetime object modifies the timestamp of a different datetime object.

2014-10-14 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +lemburg ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22627 ___ ___ Python-bugs-list mailing

[issue22624] Bogus usage of floatclock in timemodule

2014-10-14 Thread STINNER Victor
STINNER Victor added the comment: See also the PEP 418: http://legacy.python.org/dev/peps/pep-0418/#time-process-time -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22624 ___

[issue22624] Bogus usage of floatclock in timemodule

2014-10-14 Thread STINNER Victor
STINNER Victor added the comment: What is your platform? time.process_time() supports many functions: - GetProcessTimes() (Windows only) - clock_gettime(CLOCK_PROF) - clock_gettime(CLOCK_PROCESS_CPUTIME_ID) - getrusage(RUSAGE_SELF) - times() - clock() On POSIX, clock() is always tried

[issue14102] argparse: add ability to create a man page

2014-10-14 Thread Josh Rosenberg
Changes by Josh Rosenberg shadowranger+pyt...@gmail.com: -- nosy: +josh.rosenberg ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14102 ___ ___

[issue22630] `concurrent.futures.Future.set_running_or_notify_cancel` does not notify cancel

2014-10-14 Thread Ben Mather
New submission from Ben Mather: The documentation for the `set_running_or_notify_cancel` method on `concurrent.futures.Future` states that it will notify waiting threads and trigger callbacks after the `Future` has been cancelled, however currently this is done immediately by the call to

[issue22630] `concurrent.futures.Future.set_running_or_notify_cancel` does not notify cancel

2014-10-14 Thread Ben Mather
Changes by Ben Mather bwhmat...@bwhmather.com: Added file: http://bugs.python.org/file36909/change-docs.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22630 ___

[issue22630] `concurrent.futures.Future.set_running_or_notify_cancel` does not notify cancel

2014-10-14 Thread Ben Mather
Changes by Ben Mather bwhmat...@bwhmather.com: Added file: http://bugs.python.org/file36910/change-docs-and-waiters.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22630 ___

[issue22624] Bogus usage of floatclock in timemodule

2014-10-14 Thread Link Mauve
Link Mauve added the comment: I’m building against the Newlib libc, for the Wii, and it seems the issue leading to all of those functions not working is: (.text.clock+0x18): undefined reference to `_times_r' Threading is disabled, and reentrant functions as well, which could explain that.

[issue22624] Bogus usage of floatclock in timemodule

2014-10-14 Thread STINNER Victor
STINNER Victor added the comment: Please attach your pyconfig.h file. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22624 ___ ___

[issue22624] Bogus usage of floatclock in timemodule

2014-10-14 Thread Link Mauve
Changes by Link Mauve b...@linkmauve.fr: Added file: http://bugs.python.org/file36911/pyconfig.h ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22624 ___

[issue1610654] cgi.py multipart/form-data

2014-10-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I doubt we can use io.BufferedReader or handmade buffering here. Current code doesn't read more bytes than necessary. Buffered reader will read ahead, and there is no way to return read bytes back to the stream in general case (an exception is seekable

[issue21842] Fix IDLE in unicodeless build

2014-10-14 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- dependencies: +Fix Tkinter in unicodeless build priority: normal - low ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21842 ___

[issue22557] Local import is too slow

2014-10-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Yes, my CPU is slow. Here is a patch which factors out IMPORT_NAME into a separate import_name() function and adds optimization for more general case when __import__ is not overloaded. -- Added file:

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2014-10-14 Thread Campbell Barton
Changes by Campbell Barton ideasma...@gmail.com: -- resolution: out of date - remind ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15859 ___ ___

[issue16726] expat ParseFile expects bytes, not string

2014-10-14 Thread Sebastien Bardeau
Sebastien Bardeau added the comment: Same problem here with: Python 3.4.1 (default, Jul 30 2014, 14:02:54) [GCC 4.4.7 20120313 (Red Hat 4.4.7-3)] on linux What is unclear to me if this is a bug or a feature. In particular, as described here

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2014-10-14 Thread Campbell Barton
Campbell Barton added the comment: Updated the patch for '93049:d9a3d23cf8f0' Note, the link for the original bug report has changed: See https://developer.blender.org/T31856 -- status: closed - open Added file: http://bugs.python.org/file36913/fix_unicode_v2.diff

[issue22631] Feature Request CAN_RAW_FD_FRAME

2014-10-14 Thread Stefan Tatschner
New submission from Stefan Tatschner: CAN support was introduced with issue #10141. Python still seems to lack support for CAN FD which is available with the socket option CAN_RAW_FD_FRAMES, see here (chapter 4.1.5): https://www.kernel.org/doc/Documentation/networking/can.txt --

[issue3068] IDLE - Add an extension configuration dialog

2014-10-14 Thread Saimadhav Heblikar
Saimadhav Heblikar added the comment: 1. Can we have more padding at the right end of the text widget? For me, it appears attached to the scrollbar. 2. Shortcut key for Configure extensions should be different from Configure Extensions. By this I mean, with the Options menu open, there is no

[issue21600] mock.patch.stopall doesn't work with patch.dict to sys.modules

2014-10-14 Thread Colton Leekley-Winslow
Colton Leekley-Winslow added the comment: What's the status on this? -- nosy: +lwcolton ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21600 ___

[issue21600] mock.patch.stopall doesn't work with patch.dict to sys.modules

2014-10-14 Thread Michael Foord
Michael Foord added the comment: It just needs committing, I believe Kushal Das has volunteered to do it. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21600 ___

[issue12965] longobject: documentation improvements

2014-10-14 Thread Stefan Krah
Stefan Krah added the comment: This seems like too much trouble for 2.7. Closing, since I was the one who opened the issue (just reopen if you think it is still worth it). -- assignee: skrah - resolution: - fixed stage: patch review - resolved status: open - closed

[issue21600] mock.patch.stopall doesn't work with patch.dict to sys.modules

2014-10-14 Thread Kushal Das
Kushal Das added the comment: I will do that. New job is taking time. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21600 ___ ___

[issue12974] array module: deprecate '__int__' conversion support for array elements

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12974 ___ ___ Python-bugs-list

[issue12834] memoryview.to_bytes() and PyBuffer_ToContiguous() incorrect for non-contiguous arrays

2014-10-14 Thread Stefan Krah
Stefan Krah added the comment: 2.7 is the only remaining candidate for the fix. I'm not going to work on it: somehow seems too risky for 2.7 at this stage. -- assignee: skrah - resolution: - fixed stage: needs patch - resolved status: open - pending versions: -Python 3.2

[issue15857] memoryview: complete support for struct packing/unpacking

2014-10-14 Thread Stefan Krah
Stefan Krah added the comment: Closing, since the main request is tracked in #3132. -- resolution: - duplicate stage: needs patch - ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15857 ___

[issue6171] IDLE - Class Browser selection in Ubuntu

2014-10-14 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar saimadhavhebli...@gmail.com: -- nosy: +sahutd ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6171 ___ ___

[issue14262] Allow using decimals as arguments to `timedelta`

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14262 ___ ___ Python-bugs-list

[issue15671] PEP 3121, 384 Refactoring applied to struct module

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15671 ___ ___ Python-bugs-list

[issue13124] Add Running a Build Slave page to the devguide

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13124 ___ ___ Python-bugs-list

[issue7406] int arithmetic relies on C signed overflow behaviour

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7406 ___ ___ Python-bugs-list

[issue12834] memoryview.to_bytes() and PyBuffer_ToContiguous() incorrect for non-contiguous arrays

2014-10-14 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- status: pending - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue12834 ___ ___ Python-bugs-list

[issue14757] INCA: Inline Caching meets Quickening in Python 3.3

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14757 ___ ___ Python-bugs-list

[issue15672] PEP 3121, 384 Refactoring applied to testbuffer module

2014-10-14 Thread Stefan Krah
Stefan Krah added the comment: Thanks, but this is just a module for testing the buffer API. :) So let's keep it simple and close the issue. -- keywords: +gsoc, needs review -pep3121 resolution: - rejected stage: - resolved status: open - closed

[issue8876] distutils should not assume that hardlinks will work

2014-10-14 Thread Matt Wright
Matt Wright added the comment: Here's another example of where this is a pain. An emerging workflow is using Docker for a Python environment. However, on OS X, its common to use boot2docker (a lightweight VM). With VirtualBox on OS X, its common to setup a shared folder between the host and

[issue15945] memoryview + bytes fails

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15945 ___ ___ Python-bugs-list

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

2014-10-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Hi David, I didn't find an other example of a copy(dict), the rest is just some lists. If you have an other example in the email library, I will agree to provide an other patch. -- keywords: +patch Added file:

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

2014-10-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: In fact, I am really dubious with my patch because this one is really small and I think there is a missing part somewhere because the description of this issue takes 4 lines and the patch only 2. -- ___ Python

[issue10581] Review and document string format accepted in numeric data type constructors

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10581 ___ ___ Python-bugs-list

[issue13918] locale.atof documentation is missing func argument

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13918 ___ ___ Python-bugs-list

[issue14260] re.groupindex is available for modification and continues to work, having incorrect data inside it

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14260 ___ ___ Python-bugs-list

[issue22327] test_gdb failures on Ubuntu 14.10

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22327 ___ ___ Python-bugs-list

[issue3068] IDLE - Add an extension configuration dialog

2014-10-14 Thread Tal Einat
Tal Einat added the comment: I'll test on OSX tomorrow or during the weekend at the latest. However, on OSX there are three different versions of Tk available, and I'm still not sure how to test with all of them. I'll try with one, at least, and see if I can figure out how to try the others.

[issue16991] Add OrderedDict written in C

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16991 ___ ___ Python-bugs-list

[issue20440] Use Py_REPLACE/Py_XREPLACE macros

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20440 ___ ___ Python-bugs-list

[issue21227] Decimal class error messages for integer division aren't good

2014-10-14 Thread Stefan Krah
Stefan Krah added the comment: I guess there's not much to be done here. -- resolution: - wont fix stage: - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21227

[issue15857] memoryview: complete support for struct packing/unpacking

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15857 ___ ___

[issue22581] Other mentions of the buffer protocol

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22581 ___ ___ Python-bugs-list

[issue20575] Type handling policy for the statistics module

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20575 ___ ___ Python-bugs-list

[issue20499] Rounding errors with statistics.variance

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20499 ___ ___ Python-bugs-list

[issue13090] test_multiprocessing: memory leaks

2014-10-14 Thread Stefan Krah
Stefan Krah added the comment: Well, since I was the one who opened this: It seems difficult if not impossible to fix the problem, so we can probably close the issue. [Please just reopen if you disagree.] -- resolution: - wont fix stage: needs patch - resolved

[issue13090] test_multiprocessing: memory leaks

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13090 ___ ___

[issue20339] Make bytes() use tp_as_buffer for cmp

2014-10-14 Thread Stefan Krah
Stefan Krah added the comment: The comparisons can be somewhat meaningless though: from _testbuffer import * x = ndarray([1.1, 2.2, 3.3, 4.4, 5.5, 6.6], shape=[2,3], format=f) x.tolist() [[1.10023841858, 2.20047683716, 3.29952316284], [4.40095367432, 5.5, 6.59904632568]]

[issue19884] Importing readline produces erroneous output

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19884 ___ ___ Python-bugs-list

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20183 ___ ___ Python-bugs-list

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20180 ___ ___ Python-bugs-list

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20186 ___ ___ Python-bugs-list

[issue22126] mc68881 fpcr inline asm breaks clang -flto build

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22126 ___ ___ Python-bugs-list

[issue18859] README.valgrind should mention --with-valgrind

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18859 ___ ___ Python-bugs-list

[issue14373] C implementation of functools.lru_cache

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14373 ___ ___ Python-bugs-list

[issue15849] PEP 3121, 384 Refactoring applied to xx module

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15849 ___ ___ Python-bugs-list

[issue15787] PEP 3121, 384 Refactoring

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15787 ___ ___ Python-bugs-list

[issue20981] ssl doesn't build anymore with OpenSSL 0.9.7 or older: X509_check_ca

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20981 ___ ___ Python-bugs-list

[issue21917] Python 2.7.7 Tests fail, and math is faulty

2014-10-14 Thread Stefan Krah
Stefan Krah added the comment: Closing due to lack of response. -- resolution: - works for me stage: - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21917

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

2014-10-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Here is the new version of this patch with a test. -- Added file: http://bugs.python.org/file36915/issue21991.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21991

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

2014-10-14 Thread Stéphane Wirtel
Changes by Stéphane Wirtel steph...@wirtel.be: Removed file: http://bugs.python.org/file36914/issue21991.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21991 ___

[issue15599] test_threaded_import fails sporadically on Windows and FreeBSD

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15599 ___ ___ Python-bugs-list

[issue21387] Memory leaks when embedded interpreter is reinitialized

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21387 ___ ___ Python-bugs-list

[issue19256] Optimize marshal format and add version token.

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19256 ___ ___ Python-bugs-list

[issue22506] `dir` on Enum subclass doesn't expose parent class attributes

2014-10-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset cd2ede7f2ff5 by Ethan Furman in branch '3.4': Issue22506: added methods on base Enum class now show up in dir of Enum subclass (3.4) https://hg.python.org/cpython/rev/cd2ede7f2ff5 New changeset 424fbf011176 by Ethan Furman in branch 'default':

[issue8613] Decimal module flags undetermined when a signal is trapped.

2014-10-14 Thread Stefan Krah
Stefan Krah added the comment: This only affects the Python version and is probably not a problem in practice. Setting to pending, in case you want to keep it open. -- resolution: - wont fix stage: test needed - resolved status: open - pending ___

[issue22506] `dir` on Enum subclass doesn't expose parent class attributes

2014-10-14 Thread Ethan Furman
Changes by Ethan Furman et...@stoneleaf.us: -- assignee: - ethan.furman resolution: - fixed stage: test needed - resolved status: open - closed versions: +Python 3.5 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22506

[issue22458] Add fractions benchmark

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22458 ___ ___ Python-bugs-list

[issue22330] PyOS_mystricmp is broken

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue22330 ___ ___ Python-bugs-list

[issue20114] Sporadic failure of test_semaphore_tracker() of test_multiprocessing_forkserver on FreeBSD 9 buildbot

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20114 ___ ___ Python-bugs-list

[issue17095] Modules/Setup *shared* support broken

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17095 ___ ___ Python-bugs-list

[issue18841] math.isfinite fails with Decimal sNAN

2014-10-14 Thread Stefan Krah
Stefan Krah added the comment: Wont fix sounds good to me. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18841 ___ ___ Python-bugs-list mailing

[issue20305] Android's incomplete locale.h implementation prevents cross-compilation

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20305 ___ ___ Python-bugs-list

[issue7546] msvc9compiler.py: add .asm extension

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7546 ___ ___ Python-bugs-list

[issue20399] Comparison of memoryview

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue20399 ___ ___ Python-bugs-list

[issue16779] Fix compiler warning when building extension modules on 64-bit Windows

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16779 ___ ___ Python-bugs-list

[issue19412] Add docs for test.support.requires_docstrings decorator

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19412 ___ ___ Python-bugs-list

[issue9246] os.getcwd() hardcodes max path len

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue9246 ___ ___ Python-bugs-list

[issue18842] Add float.is_finite is_nan is_infinite to match Decimal methods

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18842 ___ ___ Python-bugs-list

[issue19904] Add 128-bit integer support to struct

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19904 ___ ___ Python-bugs-list

[issue3367] Uninitialized value read in parsetok.c

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3367 ___ ___ Python-bugs-list

[issue21368] Check for systemd locale on startup if current locale is set to POSIX

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21368 ___ ___ Python-bugs-list

[issue19298] Use __attribute__(cleanup ...) to detect refleaks

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19298 ___ ___ Python-bugs-list

[issue6083] Reference counting bug in PyArg_ParseTuple and PyArg_ParseTupleAndKeywords

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue6083 ___ ___ Python-bugs-list

[issue20020] modernize the modulefinder module

2014-10-14 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: The code of Thomas has not the same API than the modulefinder module. If you want a patch, we need to rework the code of Thomas and provide an equivalent API with the existing one. What do you suggest? -- nosy: +matrixise

[issue21510] fma documentation should provide better example.

2014-10-14 Thread Stefan Krah
Stefan Krah added the comment: I have no strong opinion, except that the docs appear clear: Return self*other+third with no rounding of the intermediate product self*other. -- ___ Python tracker rep...@bugs.python.org

[issue13797] Allow objects implemented in pure Python to export PEP 3118 buffers

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13797 ___ ___ Python-bugs-list

[issue22619] Possible implementation of negative limit for traceback functions

2014-10-14 Thread Dmitry Kazakov
Dmitry Kazakov added the comment: Renamed the cond variable, added tuple unpacking instead of using a single variable. -- Added file: http://bugs.python.org/file36916/tb_patch.diff ___ Python tracker rep...@bugs.python.org

[issue17247] int and float should detect inconsistent format strings

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue17247 ___ ___ Python-bugs-list

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue1820 ___ ___ Python-bugs-list

[issue10746] ctypes c_long c_bool have incorrect PEP-3118 type codes

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10746 ___ ___ Python-bugs-list

[issue21510] fma documentation should provide better example.

2014-10-14 Thread Antoine Pitrou
Antoine Pitrou added the comment: Just for the record, I think that an example also helps educate a non-expert reader (such as me ;-)) about the rounding problem. -- nosy: +pitrou ___ Python tracker rep...@bugs.python.org

[issue3132] implement PEP 3118 struct changes

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3132 ___ ___ Python-bugs-list

[issue18340] float related test has problem with Denormal Flush to Zero compiler options

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18340 ___ ___ Python-bugs-list

[issue19666] Format string for ASCII unicode or bytes-like object as readonly buffer

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah stefan-use...@bytereef.org: -- nosy: -skrah ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19666 ___ ___ Python-bugs-list

  1   2   3   >