[issue20473] inspect.Signature no longer handles builtin classes correctly

2014-02-03 Thread Yury Selivanov
Yury Selivanov added the comment: And also right now, inspect.signature looks for '__text_signature__' when no used-defined __init__ was found. That's also going to be changed, but again, when __text_signature__ becomes a public documented API. -- _

[issue20473] inspect.Signature no longer handles builtin classes correctly

2014-02-03 Thread Larry Hastings
Larry Hastings added the comment: I don't think __text_signature__ should ever be a documented public API. -- ___ Python tracker ___ _

[issue20473] inspect.Signature no longer handles builtin classes correctly

2014-02-03 Thread Yury Selivanov
Yury Selivanov added the comment: FWIW, I think the same. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue20473] inspect.Signature no longer handles builtin classes correctly

2014-02-03 Thread Yury Selivanov
Yury Selivanov added the comment: And also, reading Stefan in another issue, I'm a bit worried that it may forcibly become a public API. Users tend to start using APIs before they are public, and that's especially true for python dunder attributes. Maybe we should document '__text_signature__'

[issue17213] ctypes loads wrong version of C runtime, leading to error message box from system

2014-02-03 Thread Palm Kevin
Palm Kevin added the comment: +1 -- nosy: +palm.kevin ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue17213] ctypes loads wrong version of C runtime, leading to error message box from system

2014-02-03 Thread Mark Dickinson
Changes by Mark Dickinson : -- nosy: +mark.dickinson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue20485] Enable 'import .pyd'

2014-02-03 Thread Nick Coghlan
Nick Coghlan added the comment: Updating the C extension loading API to take advantage of PEP 451 is on the to do list for 3.5, so I'll see if we can do something about this as well. However, as Victor noted, it will depend on whether or not we can figure out a compiler independent cross platform

[issue20489] help() fails for zlib Compress and Decompress objects

2014-02-03 Thread Yury Selivanov
Yury Selivanov added the comment: The problem is that 'zlib.compressobj().flush.__module__ is None' Can we fix that in zlib? -- ___ Python tracker ___ ___

[issue20308] inspect.Signature doesn't support user classes without __init__ or __new__

2014-02-03 Thread Larry Hastings
Larry Hastings added the comment: That buildbot is happy now. Thanks for pointing it out! -- ___ Python tracker ___ ___ Python-bugs-l

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2014-02-03 Thread Larry Hastings
Larry Hastings added the comment: > What I'm saying is that the existing function introspection API > would have provided a much better way to do these things, > and that it's good to finally have the meta data available in the > source code so that that API can be made available at some point.

[issue20493] asyncio: OverflowError('timeout is too large')

2014-02-03 Thread Charles-François Natali
Charles-François Natali added the comment: > Shouldn't this be fixed in the C implementation of the select module or in selectors.py? It seems likely that the exact range might be different for each syscall and possibly per OS or even OS version. Agreed: if we want to fix this, it should be done

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2014-02-03 Thread Stefan Behnel
Stefan Behnel added the comment: > What "existing function introspection API"? I wasn't aware there was an > existing mechanism to provide signature metadata for builtin functions. Not for builtin functions, but it's unclear to me why the API of builtin functions should be different from that o

[issue17213] ctypes loads wrong version of C runtime, leading to error message box from system

2014-02-03 Thread Palm Kevin
Palm Kevin added the comment: Reproducible for Py 3.2.5 -- versions: +Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2014-02-03 Thread Larry Hastings
Larry Hastings added the comment: > Not for builtin functions, but it's unclear to me why the API of > builtin functions should be different from that of Python functions > (except, as I said, for the existence of byte code). I really don't follow you. You seem to be saying that __text_signatur

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2014-02-03 Thread Stefan Behnel
Stefan Behnel added the comment: Python 3.4.0b3+ (default:19d81cc213d7, Feb 1 2014, 10:38:23) [GCC 4.8.1] on linux Type "help", "copyright", "credits" or "license" for more information. >>> def test(a,b,c=None): pass >>> set(dir(test)) - set(dir(len)) {'__get__', '__code__', '__globals__', '__di

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2014-02-03 Thread Stefan Behnel
Stefan Behnel added the comment: """ >>> test.__code__.co_varnames () >>> test.__code__.co_varnames () >>> test.__code__.co_varnames ('a', 'b', 'c') """ copy&pasto, please ignore the first two... :o) -- ___ Python tracker

[issue20368] Tkinter: handle the null character

2014-02-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: > But, how many of the replacement sites are exercised by the tests? I added tests for most the replacement sites and updated tests has even more tests. split() and splitlist() -- tested. Unfortunately they are tested only for bytes argument because these m

[issue20479] Efficiently support weight/frequency mappings in the statistics module

2014-02-03 Thread Wolfgang Maier
Wolfgang Maier added the comment: Well, I was thinking about frequencies (ints) when suggesting for x,m in data.items(): T = _coerce_types(T, type(x)) n, d = exact_ratio(x) partials[d] = partials_get(d, 0) + n*m in my previous message. To support weights (float or Ra

[issue20479] Efficiently support weight/frequency mappings in the statistics module

2014-02-03 Thread Oscar Benjamin
Oscar Benjamin added the comment: > in my previous message. To support weights (float or Rational) this would > have to be more sophisticated. I guess you'd do: for x,w in data.items(): T = _coerce_types(T, type(x)) xn, xd = exact_ratio(x) wn, wd = exact_ratio(w

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2014-02-03 Thread Larry Hastings
Larry Hastings added the comment: Yyou have just answered the question "How do you determine signature information for functions written in Python?". A shorter way to express this answer: functions written in Python are implemented as a "function object" (in C, PyFunctionObject), which intern

[issue20498] Update StringIO newline tests

2014-02-03 Thread Antoine Pitrou
Antoine Pitrou added the comment: You forgot to add the patch :) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue20498] Update StringIO newline tests

2014-02-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Indeed. Here is a patch. -- keywords: +patch Added file: http://bugs.python.org/file33885/stringio_newline_tests.patch ___ Python tracker ___

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2014-02-03 Thread Stefan Behnel
Stefan Behnel added the comment: > [...] a "builtin code object" (PyCFunctionObject) [...] doesn't have any of > the metadata you cited. That exactly is the bug. I think we should take the further discussion offline, or move it to a new ticket. -- ___

[issue20481] Clarify type coercion rules in statistics module

2014-02-03 Thread Oscar Benjamin
Oscar Benjamin added the comment: It's not as simple as registering with an ABC. You also need to provide the interface that the ABC represents: >>> import sympy >>> r = sympy.Rational(1, 2) >>> r 1/2 >>> r.numerator Traceback (most recent call last): File "", line 1, in AttributeError: 'Half

[issue20405] Add io.BinaryTransformWrapper and a "transform" parameter to open()

2014-02-03 Thread Marc-Andre Lemburg
Marc-Andre Lemburg added the comment: On 03.02.2014 02:24, STINNER Victor wrote: > > STINNER Victor added the comment: > >> Ever used "recode" ? > > No, what is it? I once used iconv for short tests, but I never required iconv > to convert a real document. It's a command line tool to convert

[issue20405] Add io.BinaryTransformWrapper and a "transform" parameter to open()

2014-02-03 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: We already have stackable pieces for gzip, bz2 and lzma compressed streams -- GzipFile, BZ2File and LZMAFile. They are more powerful and more efficient than generic codecs.StreamReader/codecs.StreamWriter (and note that most binary codecs are just don't work

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2014-02-03 Thread Nick Coghlan
Nick Coghlan added the comment: Stefan is suggesting that rather than emulating the Python signature line (which is a concise human readable notation that with the PEP 457 tweaks will handle even the most obscure custom argument parsing, whether that parsing is implemented in C or in Python), it

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2014-02-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: I understand Stefan to (reasonably) want 1 api instead of 2. He imagined that the only way to do that would be for everything to at least partially imitate the old methods. Larry and Nick are suggesting instead that everything should adopt the implementation-i

[issue20389] clarify meaning of xbar and mu in pvariance/variance of statistics module

2014-02-03 Thread Oscar Benjamin
Oscar Benjamin added the comment: I agree that the current wording in the doc-strings is ambiguous. It should be more careful to distinguish between mu : true/population mean xbar : estimated/sample mean I disagree that the keyword arguments should be made the same. There is an important conc

[issue20368] Tkinter: handle the null character

2014-02-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: With the additional tests, it seems reasonable to apply. -- ___ Python tracker ___ ___ Python-bugs-l

[issue20485] Enable 'import .pyd'

2014-02-03 Thread Suzumizaki
Suzumizaki added the comment: Thanks for taking into account this issue for PEP 451. Honestly to say, I can't imagine why or/and how this issue(or my patches) causes any problems especially compatibility issues. If someone can point them, I will try to resolve. Note that I extend only the def

[issue20499] Rounding errors with statistics.variance

2014-02-03 Thread Oscar Benjamin
New submission from Oscar Benjamin: The mean/variance functions in the statistics module don't quite round correctly. The reasons for this are that although exact rational arithmetic is used internally in the _sum function it is not used throughout the module. In particular the _sum function

[issue17159] Remove explicit type check from inspect.Signature.from_function()

2014-02-03 Thread Stefan Behnel
Stefan Behnel added the comment: > I understand Stefan to (reasonably) want 1 api instead of 2. Absolutely. However, I guess the underlying reasoning here is that there are other callables, too, so it's not worth making just two kinds of them look the same, even if both are functions and even if

[issue20500] assertion failed when passing an exception object to sys.exit

2014-02-03 Thread Xavier de Gaye
New submission from Xavier de Gaye: The following code crashes python with: python: Objects/object.c:512: PyObject_Str: Assertion `!PyErr_Occurred()' failed. on the tip of the default branch, but not on python 3.3.3. import sys error = None try: raise ValueError('some text') except Valu

[issue20485] Enable 'import .pyd'

2014-02-03 Thread Nick Coghlan
Nick Coghlan added the comment: As Victor noted, inventing our own encoding scheme just for this use case isn't desirable, although it's certainly a good fallback option that will ensure the feature remains feasible even if trying to handle the Unicode issues at the C compiler level proves too ch

[issue20485] Enable 'import .pyd'

2014-02-03 Thread STINNER Victor
STINNER Victor added the comment: Oh, the topic was already discussed some years ago. Start: https://mail.python.org/pipermail/python-dev/2011-May/111279.html -- ___ Python tracker _

[issue20500] assertion failed when passing an exception object to sys.exit

2014-02-03 Thread R. David Murray
Changes by R. David Murray : -- nosy: +haypo, larry priority: normal -> release blocker stage: -> needs patch versions: -Python 3.5 ___ Python tracker ___ _

[issue20481] Clarify type coercion rules in statistics module

2014-02-03 Thread Wolfgang Maier
Wolfgang Maier added the comment: > there are currently two strict requirements for any numeric type to be usable > with statistics._sum: I meant *three* of course (remembered one only during writing). -- ___ Python tracker

[issue20473] inspect.Signature no longer handles builtin classes correctly

2014-02-03 Thread Larry Hastings
Larry Hastings added the comment: > > Also also, I remember specifically that the isinstance(type) code > > would fail builtin classes. > > Could you please find an example of this? This was during the development of the original feature. I changed the if statement for the from_builtin() call

[issue20481] Clarify type coercion rules in statistics module

2014-02-03 Thread Wolfgang Maier
Wolfgang Maier added the comment: Just to make sure that this discussion is not getting on the wrong track, there are currently two strict requirements for any numeric type to be usable with statistics._sum: (1) the type has to provide either - numerator/denominator properties or - an a

[issue16074] Bad error message in os.rename, os.link, and os.symlink

2014-02-03 Thread Larry Hastings
Larry Hastings added the comment: As release manager, I would be willing to consider this patch. However, as original author of the code in question, I don't like it. Showing zero filenames, while potentially less confusing, is also far less helpful. A better solution would be to show both

[issue20501] fileinput module will read whole file into memory when using fileinput.hook_encoded

2014-02-03 Thread Gunnar Aastrand Grimnes
New submission from Gunnar Aastrand Grimnes: When reading large files with fileinput, it will work as expected and only process a line at a time when used normally, but if you add an hook_encoded openhook it will read the whole file into memory before returning the first line. Verify by runn

[issue20502] Context.create_decimal_from_float() inconsistent precision for zeros after decimal mark

2014-02-03 Thread Mauricio de Alencar
New submission from Mauricio de Alencar: The following code demonstrates an inconsistency of this method in dealing with zeros after the decimal mark. from decimal import Context context = Context(prec=2) for x in [100., 10., 1., 0.1]: print(context.create_decimal_from_float(x), context

[issue20384] os.open() exception doesn't contain file name on Windows

2014-02-03 Thread Larry Hastings
Larry Hastings added the comment: If it's fixed in 3.4, then the first step would be to ask Georg if he will accept a fix for 3.3. If he will not, then we don't need to go any further. -- ___ Python tracker _

[issue20501] fileinput module will read whole file into memory when using fileinput.hook_encoded

2014-02-03 Thread Gunnar Aastrand Grimnes
Gunnar Aastrand Grimnes added the comment: The problem lies in codecs.py here: http://hg.python.org/cpython/file/ae7facd874ba/Lib/codecs.py#l581 -- ___ Python tracker ___ __

[issue20384] os.open() exception doesn't contain file name on Windows

2014-02-03 Thread Mark Lawrence
Mark Lawrence added the comment: Good afternoon, Would you please be kind enough to have my name removed from all nosy lists as I've no interest in being constantly reminded that I've been called a liar. Kindest regards. Mark Lawrence. On Monday, 3 February 2014, 14:46, Larry Hastings wro

[issue20481] Clarify type coercion rules in statistics module

2014-02-03 Thread Oscar Benjamin
Oscar Benjamin added the comment: I agree that supporting non-stdlib types is in some ways a separate issue from how to manage coercion with mixed stdlib types. Can you provide a complete patch (e.g. hg diff > coerce_types.patch). http://docs.python.org/devguide/ There should probably also be te

[issue14911] generator.throw() documentation inaccurate

2014-02-03 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Here's one for 2.7. I'm still looking at 3. The funny thing is that the signature of generator.throw reflects 2.x conventions. I'm figuring out if it can be used with the .with_traceback() idiom -- keywords: +patch Added file: http://bugs.py

[issue20384] os.open() exception doesn't contain file name on Windows

2014-02-03 Thread Larry Hastings
Larry Hastings added the comment: Mark Lawrence: you can remove it yourself, by directly editing the "nosy" list on the page for the bug. If you want to remove yourself from all issues on the tracker, click on the "Followed by you" link on the left side and work your way down the list. -

[issue20489] help() fails for zlib Compress and Decompress objects

2014-02-03 Thread Larry Hastings
Larry Hastings added the comment: Nope, we can't fix it in zlib. As far as I can tell, the problem is that method_get() in descrobject.c passes in NULL for the module to PyCFunction_NewEx(). method_get gets the type as part of the descriptor protocol, but type objects in C don't appear to ha

[issue20384] os.open() exception doesn't contain file name on Windows

2014-02-03 Thread Mark Lawrence
Mark Lawrence added the comment: @Larry - thank you for the heads up. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

[issue7325] tempfile.mkdtemp() does not return absolute pathname when relative dir is specified

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue7776] http.client.HTTPConnection tunneling is broken

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue20384] os.open() exception doesn't contain file name on Windows

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue1353344] python.desktop

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue19145] Inconsistent behaviour in itertools.repeat when using negative times

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue7262] codecs.open() + eol (windows)

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue20399] Comparison of memoryview

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue20503] super behavioru and abstract base classes (either implementation or documentation/error message is wrong)

2014-02-03 Thread Gerrit Holl
New submission from Gerrit Holl: When using an abstract base class, super(type, obj) throws a TypeError stating "obj must be an instance (...) of type", even though isinstance(obj, type) returns True. I'm not sure what is supposed to happen here, but either the error message and the documenta

[issue1776674] glob.glob inconsistent

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue20047] bytearray partition bug

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue20467] Confusing wording about __init__

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue4492] httplib code thinks it closes connection, but does not

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue15027] Faster UTF-32 encoding

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue20266] Bring Doc/faq/windows up to date

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue2943] Distutils should generate a better error message when the SDK is not installed

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue20335] bytes constructor accepts more than one argument even if the first one is not a string

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue19548] 'codecs' module docs improvements

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue6128] Consequences of using Py_TPFLAGS_HAVE_GC are incompletely explained

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue19980] Improve help('non-topic') response

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue1100942] Add datetime.time.strptime and datetime.date.strptime

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

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

2014-02-03 Thread Vajrasky Kok
Vajrasky Kok added the comment: Here is the updated patch addressing Zachary's reviews (Thanks!). However, there are some reviews that I could not implement. 1. "This is a good candidate for a custom return converter." I can not synchronize struct rlimit and NULL return values. 2. "Should be

[issue2175] Expat sax parser silently ignores the InputSource protocol

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue777588] asyncore is broken for windows if connection is refused

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue19104] pprint produces invalid output for long strings

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue504219] locale.resetlocale is broken

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue7105] weak dict iterators are fragile because of unpredictable GC runs

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue4945] json checks True/False by identity, not boolean value

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue6501] Fatal error on startup with invalid PYTHONIOENCODING

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue8075] Windows (Vista/7) install error when choosing to compile .py files

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue14910] argparse: disable abbreviation

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue4037] doctest.py should include method descriptors when looking inside a class __dict__

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue3802] smtpd.py __getaddr insufficient handling

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue19655] Replace the ASDL parser carried with CPython

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue1208730] expat binding for XML_ParserReset

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue4727] copyreg doesn't support keyword only arguments in __new__

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue2213] build_tkinter.py does not handle paths with spaces

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue1098749] Single-line option to pygettext.py

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue2889] curses for windows (alternative patch)

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue20481] Clarify type coercion rules in statistics module

2014-02-03 Thread Wolfgang Maier
Wolfgang Maier added the comment: > Once the input numbers are converted to float statistics._sum can handle > them perfectly well. In this case I think the output should also be a float so > that it's clear that precision may have been lost. If the precision of float > is not > what the user wa

[issue7442] _localemodule.c: str2uni() with different LC_NUMERIC and LC_CTYPE

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue6159] Tkinter.PanedWindow: docstring fixes, change in paneconfigure and removed some returns

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue1763] Get path to shell/known folders on Windows

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue6225] Fixing several minor bugs in Tkinter.Canvas and one in Misc._configure

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue6181] Tkinter.Listbox several minor issues

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue20501] fileinput module will read whole file into memory when using fileinput.hook_encoded

2014-02-03 Thread R. David Murray
R. David Murray added the comment: This requires (1) a doc update to indicate the problem and (2) a way to tell fileinput to *not* use readlines to optimize by calling readlines(bufsize), since in the case of using codecs it can be a problem. Presumably buffer=None would be the logical way to

[issue4350] Remove dead code from Tkinter.py

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue6335] Add support for mingw

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue16037] httplib: header parsing is unlimited

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue5717] os.defpath includes unix /bin on windows

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

  1   2   3   4   >