[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 at

[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 : -- nosy: +lemburg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[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 ___ __

[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 as

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

2014-10-14 Thread Josh Rosenberg
Changes by Josh Rosenberg : -- nosy: +josh.rosenberg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[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 `canc

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

2014-10-14 Thread Ben Mather
Changes by Ben Mather : Added file: http://bugs.python.org/file36909/change-docs.patch ___ Python tracker ___ ___ Python-bugs-list mailing lis

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

2014-10-14 Thread Ben Mather
Changes by Ben Mather : Added file: http://bugs.python.org/file36910/change-docs-and-waiters.patch ___ Python tracker ___ ___ Python-bugs-list

[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. But

[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 ___ ___ Python-bugs-list mailing list Unsu

[issue22624] Bogus usage of floatclock in timemodule

2014-10-14 Thread Link Mauve
Changes by Link Mauve : Added file: http://bugs.python.org/file36911/pyconfig.h ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[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 strea

[issue21842] Fix IDLE in unicodeless build

2014-10-14 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- dependencies: +Fix Tkinter in unicodeless build priority: normal -> low ___ Python tracker ___ ___ Py

[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: http://bugs.python.org/file36912/faster_import_3.

[issue15859] PyUnicode_EncodeFSDefault win32 inconsistancy.

2014-10-14 Thread Campbell Barton
Changes by Campbell Barton : -- resolution: out of date -> remind ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[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 http://stackoverflow.com/questions/1179305/expat-pars

[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 -- compo

[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 w

[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 ___ ___ Python-bugs-list ma

[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 ___ __

[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 ___ ___ Python-bugs-list mailing list Unsu

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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 ___ ___

[issue6171] IDLE - Class Browser selection in Ubuntu

2014-10-14 Thread Saimadhav Heblikar
Changes by Saimadhav Heblikar : -- nosy: +sahutd ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue7406] int arithmetic relies on C signed overflow behaviour

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

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

2014-10-14 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- status: pending -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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 bo

[issue15945] memoryview + bytes fails

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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: http://bugs.python.org/file36914/issue21

[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 trac

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue13918] locale.atof documentation is missing func argument

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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 : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue22327] test_gdb failures on Ubuntu 14.10

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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 : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue20440] Use Py_REPLACE/Py_XREPLACE macros

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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 ___ ___

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue22581] Other mentions of the buffer protocol

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue20575] Type handling policy for the statistics module

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue20499] Rounding errors with statistics.variance

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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 : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[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.599

[issue19884] Importing readline produces erroneous output

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue14373] C implementation of functools.lru_cache

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue15787] PEP 3121, 384 Refactoring

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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 : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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 ___

[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 ___

[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 : Removed file: http://bugs.python.org/file36914/issue21991.patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue15599] test_threaded_import fails sporadically on Windows and FreeBSD

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue21387] Memory leaks when embedded interpreter is reinitialized

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue19256] Optimize marshal format and add version token.

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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': Issu

[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 : -- assignee: -> ethan.furman resolution: -> fixed stage: test needed -> resolved status: open -> closed versions: +Python 3.5 ___ Python tracker ___ _

[issue22458] Add fractions benchmark

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue22330] PyOS_mystricmp is broken

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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 : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue17095] Modules/Setup *shared* support broken

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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 ___ ___ Python-bugs-list mailing list Unsubscribe:

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue7546] msvc9compiler.py: add .asm extension

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue20399] Comparison of memoryview

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue19904] Add 128-bit integer support to struct

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue3367] Uninitialized value read in parsetok.c

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[issue6083] Reference counting bug in PyArg_ParseTuple and PyArg_ParseTupleAndKeywords

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[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 ___

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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 _

[issue17247] int and float should detect inconsistent format strings

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

[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 __

[issue3132] implement PEP 3118 struct changes

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

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

2014-10-14 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: -skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.o

  1   2   3   >