Re: Important features for editors

2013-07-04 Thread Roy Smith
In article mailman.4258.1372984732.3114.python-l...@python.org, Joshua Landau joshua.landau...@gmail.com wrote: [talking about Sublime Text] There's, instead of a scrollbar, a little bird's-eye-view of the whole code on the RHS. I've never used it myself, but there's a couple of guys in the

Re: python adds an extra half space when reading from a string or list

2013-07-04 Thread Joshua Landau
On 4 July 2013 12:19, Antoon Pardon antoon.par...@rece.vub.ac.be wrote: Op 04-07-13 01:40, Joshua Landau schreef: Bear in mind that if the way you were acting was all in my with trepidation category, I would likely have not spoken up. I believe you crossed a lot further beyond that line. I

Re: Default scope of variables

2013-07-04 Thread Dave Angel
On 07/04/2013 09:24 PM, Steven D'Aprano wrote: On Thu, 04 Jul 2013 17:54:20 +0100, Rotwang wrote: [...] Anyway, none of the calculations that has been given takes into account the fact that names can be /less/ than one million characters long. Not in *my* code they don't!!! *wink* The

Re: Default scope of variables

2013-07-04 Thread Joshua Landau
On 5 July 2013 03:03, Dave Angel da...@davea.name wrote: On 07/04/2013 09:24 PM, Steven D'Aprano wrote: On Thu, 04 Jul 2013 17:54:20 +0100, Rotwang wrote: It's perhaps worth mentioning that some non-ascii characters are allowed in identifiers in Python 3, though I don't know which ones. PEP

Re: Default scope of variables

2013-07-04 Thread Joshua Landau
On 5 July 2013 03:03, Dave Angel da...@davea.name wrote: In particular, http://docs.python.org/3.3/reference/lexical_analysis.html#identifiers has a definition for id_continue that includes several interesting categories. I expected the non-ASCII digits, but there's other stuff there,

Re: Important features for editors

2013-07-04 Thread Cameron Simpson
[ Digressing to tuning remote access. Sorry. - Cameron ] On 04Jul2013 21:50, Roy Smith r...@panix.com wrote: | Does Sublime have some sort of remote mode? We've got one guy who loves | it, but needs to work on a remote machine (i.e. in AWS). I got X11 | working for him (he has a Mac desktop),

[issue18181] super vs. someclass.__getattribute__

2013-07-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: Updated version of the patch, with some semantic changes and tests for the Python level API. Known issues: * Patches uses tabs for indentation * No tests for the C level API * I don't like implementation of slot_tp_getattro_super -- Added file:

[issue18181] super vs. someclass.__getattribute__

2013-07-04 Thread Ronald Oussoren
Changes by Ronald Oussoren ronaldousso...@mac.com: Removed file: http://bugs.python.org/file30546/issue-18181-poc.txt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18181 ___

[issue18181] super vs. someclass.__getattribute__

2013-07-04 Thread Ronald Oussoren
Changes by Ronald Oussoren ronaldousso...@mac.com: Removed file: http://bugs.python.org/file30555/issue-18181-poc-v3.txt ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18181 ___

[issue18181] super vs. someclass.__getattribute__

2013-07-04 Thread Ronald Oussoren
Changes by Ronald Oussoren ronaldousso...@mac.com: Removed file: http://bugs.python.org/file30528/supers.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18181 ___

[issue18181] super vs. someclass.__getattribute__

2013-07-04 Thread Ronald Oussoren
Changes by Ronald Oussoren ronaldousso...@mac.com: Removed file: http://bugs.python.org/file30556/super-hook-proposal.rst ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18181 ___

[issue18181] super vs. someclass.__getattribute__

2013-07-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: Also updated the draft PEP text -- Added file: http://bugs.python.org/file30767/super-hook-proposal.rst ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18181

[issue18309] Make python slightly more relocatable

2013-07-04 Thread Mathias Fröhlich
Mathias Fröhlich added the comment: Hi Ronald, Eric, Nick, Looking up the symbol name of the current function should work also. And I am free to rename these functions to whatever you like. Attached is version 2 of the patch with the suggested changes. The windows implementation is still

[issue18356] help(numpy) causes segfault on exit

2013-07-04 Thread Michelle Arzul
New submission from Michelle Arzul: As far as we could tell this bug is only consistently reproducible on Ubuntu 13.04. A line in pydoc.py causes a segfault when help(numpy) (no other libraries that I know of) exits. The offending method is pipepager(). For a full trackdown and workaround of

[issue18356] help(numpy) causes segfault on exit

2013-07-04 Thread Christian Heimes
Christian Heimes added the comment: Please provide more information about your setup. Not everybody has access to a Ubuntu 13.04 box * exact Python version * NumPy version * platform (X86, X86_64, ARM) * Kernel, libc and compiler version are useful, too * terminal application * environment

[issue18356] help(numpy) causes segfault on exit

2013-07-04 Thread Michelle Arzul
Michelle Arzul added the comment: I'm no expert, I just found the bug... but I'll try my best. * exact Python version: 2.7.4 (GCC 4.7.3) * NumPy version: 1.7.1 * platform (X86, X86_64, ARM): i686 * Kernel: Linux 3.8.0-25-generic #37-Ubuntu SMP Thu Jun 6 20:47:30 UTC 2013 i686 i686 i686

[issue18291] codecs.open interprets space as line ends

2013-07-04 Thread Paul
Paul added the comment: Right, #7643 indeed seems to be exactly about the issue I described here (for as much as I know unicode which isn't all that much). So maybe they should be merged. The issue was closed March 2010, is that after 2.7.3 was released? By the way, where I wrote \x12, \x13,

[issue18305] [patch] Fast sum() for non-numbers

2013-07-04 Thread Sergey
Sergey added the comment: This patch implements another solution to the same bug. But instead of changing default code it adds a special case optimization for lists, tuples and strings, similar to those two special cases for numbers, that are already there. === Lists === No patch: $

[issue18329] for line in socket.makefile() speed degradation

2013-07-04 Thread Christian Heimes
Changes by Christian Heimes li...@cheimes.de: -- nosy: +christian.heimes ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18329 ___ ___

[issue18353] PyUnicode_WRITE_CHAR macro definition missing

2013-07-04 Thread Martin v . Löwis
Martin v. Löwis added the comment: I'll declare that the documentation is in error. I was pondering adding this macro, and the API changed forth and back several times (also after other people started contributing to the new Unicode API). The API is now what is implemented, and the

[issue18329] for line in socket.makefile() speed degradation

2013-07-04 Thread Christian Heimes
Christian Heimes added the comment: I first suspected that file based IO involves too many syscalls and context switches. However ``strace -c`` showed only minor differences in the amount of syscalls. The difference between read() and recvfrom() should not make any difference. perf revealed

[issue18329] for line in socket.makefile() speed degradation

2013-07-04 Thread Christian Heimes
Christian Heimes added the comment: Summary: makefile: 611990 primitive calls fdopen: 1629 primitive calls -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18329 ___

[issue11185] test_wait4 error on AIX

2013-07-04 Thread Charles-François Natali
Changes by Charles-François Natali cf.nat...@gmail.com: -- assignee: - neologix ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue11185 ___ ___

[issue18357] add tests for dictview set difference operations

2013-07-04 Thread Fraser Tweedale
New submission from Fraser Tweedale: The Python documentation states that set-like dictionary view objects support set difference (-), however, this behaviour is untested. Add some tests for this behaviour. (This issue was discovered because PyPy doesn't support (-) for dictviews, yet they

[issue18358] update links to Apple Style Guide

2013-07-04 Thread Russkel
New submission from Russkel: Apple has relocated and renamed their style guide. This patch reflects those changes and provides links to both PDF and online version. -- components: Devguide files: style-guide-fixes.patch keywords: patch messages: 192286 nosy: Russkel, ezio.melotti

[issue18358] update links to Apple Style Guide

2013-07-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: This is a duplicate of #18021 -- nosy: +ronaldoussoren resolution: - duplicate stage: - committed/rejected status: open - closed superseder: - Update broken link to Apple Publication Style Guide type: - behavior

[issue18358] update links to Apple Style Guide

2013-07-04 Thread Russ Webber
Russ Webber added the comment: So it is. Sorry, should have searched first. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18358 ___ ___

[issue18357] add tests for dictview set difference operations

2013-07-04 Thread Fraser Tweedale
Fraser Tweedale added the comment: and here's a patch for python3 (the earlier patch is for the 2.7 branch). -- Added file: http://bugs.python.org/file30773/dictview-set-sub-test-python3.patch ___ Python tracker rep...@bugs.python.org

[issue18359] pickle fail to handle some class with __new__

2013-07-04 Thread yoch
New submission from yoch: Hi, If some class objects have extra arguments in the __new__ constructor , pickle fail to serialize it. Here the output of provided test-case : Traceback (most recent call last): File /home/yoch/bug.py, line 19, in module y = pickle.load(fp) TypeError:

[issue18359] pickle fail to handle some class with __new__

2013-07-04 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: This is expected, your class must say how this __new__ constructor can be called. http://docs.python.org/2/library/pickle.html#object.__getnewargs__ -- nosy: +amaury.forgeotdarc resolution: - works for me status: open - closed

[issue18356] help(numpy) causes segfault on exit

2013-07-04 Thread R. David Murray
R. David Murray added the comment: pydoc doesn't do anything special other than import the module. Well, there's some special code in linecache for getting docstrings from C modules, I think, so that could be something to check. Does Ubuntu have local patches to numpy? -- nosy:

[issue18356] help(numpy) causes segfault on exit

2013-07-04 Thread Michelle Arzul
Michelle Arzul added the comment: Apparently it only occurs with the Ubuntu packaged versions of Python and numpy. Somebody who was able to reproduce my problem had it with python-2.7.4-0ubuntu1-amd64 and python-numpy-1:1.7.1-1ubuntu1-amd64 which exhibited the same behaviour. Apparently

[issue18360] Won't install. Keeps telling me DLL is missing.

2013-07-04 Thread Dale Smith
New submission from Dale Smith: When I click install - run, it tells me a DLL is missing and to contact my vendor (Windows 7 Home Premium). This is the only installation that does this. I cannot find an answer anywhere and all other installations work fine. What could be causing this? Which

[issue16977] argparse: mismatch between choices parsing and usage/error message

2013-07-04 Thread paul j3
paul j3 added the comment: Changing _check_value from: def _check_value(self, action, value): # converted value must be one of the choices (if specified) if action.choices is not None and value not in action.choices: ... to def _check_value(self, action,

[issue18329] for line in socket.makefile() speed degradation

2013-07-04 Thread Richard Oudkerk
Richard Oudkerk added the comment: I think I know what's going on here. For socket IO readline() uses a readahead buffer size of 1. Why is that? I think that makefile(mode='rb') and fdopen() both create BufferedReader objects with the same buffer size. It looks to me like there are the

[issue18329] for line in socket.makefile() speed degradation

2013-07-04 Thread Richard Oudkerk
Richard Oudkerk added the comment: Using while True: if not fileobj.read(8192): break instead of for line in fileobj: pass results in higher throughput, but a similar slowdown with makefile(). So this is not a problem specific to

[issue18329] for line in socket.makefile() speed degradation

2013-07-04 Thread Christian Heimes
Christian Heimes added the comment: Err, you are right. It's buffered. I misread one function call and thought it's not buffered at all. COUNT = 100 LINELEN = 1000 int(LINELEN * COUNT / 8192) 122070 The number looks familiar, doesn't it? :) I still stand by my analysis that the slow

[issue18021] Update broken link to Apple Publication Style Guide

2013-07-04 Thread Madison May
Madison May added the comment: If the general consensus is that the APSG link should be removed, here's one more patch for you. -- Added file: http://bugs.python.org/file30775/apsg_removed.patch ___ Python tracker rep...@bugs.python.org

[issue18351] Incorrect variable name in importlib._bootstrap._get_sourcefile

2013-07-04 Thread Madison May
Madison May added the comment: Here's a 5 character patch for the sake of completeness. -- keywords: +patch nosy: +madison.may Added file: http://bugs.python.org/file30776/Issue18351.patch ___ Python tracker rep...@bugs.python.org

[issue18329] for line in socket.makefile() speed degradation

2013-07-04 Thread Richard Oudkerk
Richard Oudkerk added the comment: The only real reason for implementing SocketIO in pure Python is because read() and write() do not work on Windows with sockets. (I think there are also a few complications involving SSL sockets and the close() method.) On Windows I have implemented a file

[issue18329] for line in socket.makefile() speed degradation

2013-07-04 Thread Christian Heimes
Christian Heimes added the comment: There is little bit more to it. A comment in the class' body describes the reason for SockteIO: # One might wonder why not let FileIO do the job instead. There are two # main reasons why FileIO is not adapted: # - it wouldn't work under Windows

[issue18329] for line in socket.makefile() speed degradation

2013-07-04 Thread Richard Oudkerk
Richard Oudkerk added the comment: Ah. I had not thought of socket timeouts. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18329 ___ ___

[issue18351] Incorrect variable name in importlib._bootstrap._get_sourcefile

2013-07-04 Thread Brett Cannon
Brett Cannon added the comment: Any chance you want to write some tests for the function? =) -- keywords: +easy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18351 ___

[issue11185] test_wait4 error on AIX

2013-07-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset b3ea1b5a1617 by Antoine Pitrou in branch '3.3': Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé. http://hg.python.org/cpython/rev/b3ea1b5a1617 New changeset 8055521e372f by Antoine Pitrou in branch 'default': Issue #11185: Fix

[issue11185] test_wait4 error on AIX

2013-07-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset e3fd5fc5dc47 by Antoine Pitrou in branch '2.7': Issue #11185: Fix test_wait4 under AIX. Patch by Sébastien Sablé. http://hg.python.org/cpython/rev/e3fd5fc5dc47 -- ___ Python tracker

[issue18200] Update stdlib to use ModuleNotFoundError

2013-07-04 Thread Brett Cannon
Brett Cannon added the comment: As ModuleNotFoundError is going to be reverted so should the changesets for this issue. -- resolution: fixed - status: closed - open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18200

[issue11185] test_wait4 error on AIX

2013-07-04 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thank you. This should be fixed now. Please reopen if not. -- nosy: +pitrou resolution: - fixed stage: - committed/rejected status: open - closed versions: +Python 2.7, Python 3.3, Python 3.4 -Python 3.2 ___ Python

[issue18302] test_multiprocessing: test.support.import_module() does not ignore the ImportError on SemLock

2013-07-04 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- dependencies: +add ModuleNotFoundError ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18302 ___ ___

[issue18200] Update stdlib to use ModuleNotFoundError

2013-07-04 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- dependencies: -add ModuleNotFoundError ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18200 ___ ___

[issue15767] add ModuleNotFoundError

2013-07-04 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- dependencies: +Update stdlib to use ModuleNotFoundError ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15767 ___

[issue18329] for line in socket.makefile() speed degradation

2013-07-04 Thread STINNER Victor
STINNER Victor added the comment: On Python 2, socket.makefile(rb) duplicates the file descriptor and creates a new file object: fileobj.read() calls the C function read(). On Python 3, socket.makefile(rb) creates a SocketIO wrapped in BufferedReader: fileobj.read() calls the C function

[issue18361] Move dev-in-a-box to os.cpu_count()

2013-07-04 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- assignee: brett.cannon keywords: easy nosy: brett.cannon priority: low severity: normal stage: needs patch status: open ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18361

[issue18362] Make build_cpython.py from dev-in-a-box work outside of a box

2013-07-04 Thread Brett Cannon
New submission from Brett Cannon: No reason why it can't be generalized to accept a directory argument so that it can be used by anyone to build a checkout of CPython whether it is in a box or not. Would also help maintain the code as me (and one else who cared to) could then just always use

[issue18363] Change use of acronym tag in devinabox index.html to abbr

2013-07-04 Thread Brett Cannon
New submission from Brett Cannon: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr -- assignee: brett.cannon keywords: easy messages: 192311 nosy: brett.cannon priority: low severity: normal status: open title: Change use of acronym tag in devinabox index.html to abbr

[issue17845] Clarify successful build message

2013-07-04 Thread Brett Cannon
Brett Cannon added the comment: First, thanks to Yogesh for writing a patch! Second, I still think the second line should be The necessary bits to build these optional modules were not found:. I purposefully like the vagueness of it so we don't start going on about external vs. system,

[issue18329] for line in socket.makefile() speed degradation

2013-07-04 Thread STINNER Victor
STINNER Victor added the comment: My results of the benchmark on Linux 3.9, first with a loop calling fileobj.read(8192) (read), then with the for line in fileobj: pass (readline). $ python2.7 bench_socket_read.py TCP mode, makefile method. 1775085.8 lines per second (1692.9 MB/s). Delay is

[issue18279] IDLE Unit test for RstripExtension.py

2013-07-04 Thread Phil Webster
Phil Webster added the comment: Added to Terry's Text Widget code (in #18226) and created mock_idle.py for the mock EditorWindow. Todd's FormatParagraph test in the aforementioned issue also passes with the mock EditorWindow. -- Added file:

[issue18360] Won't install. Keeps telling me DLL is missing.

2013-07-04 Thread R. David Murray
R. David Murray added the comment: Exactly which installer are you trying to run and where did you download it from? -- nosy: +r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18360

[issue18329] for line in socket.makefile() speed degradation

2013-07-04 Thread Richard Oudkerk
Richard Oudkerk added the comment: I find that by adding the lines fileobj.raw.readinto = ss.recv_into fileobj.raw.read = ss.recv the speed with makefile() is about 30% slower than with fdopen(). -- ___ Python tracker

[issue18360] Won't install. Keeps telling me DLL is missing.

2013-07-04 Thread Dale Smith
Dale Smith added the comment: http://www.python.org/ftp/python/2.7.5/python-2.7.5.msi That is the URL I downloaded from and the installer. Thank you, Dale On 7/4/2013 4:17 PM, R. David Murray wrote: R. David Murray added the comment: Exactly which installer are you trying to run and where

[issue18200] Update stdlib to use ModuleNotFoundError

2013-07-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7769c4d72806 by Brett Cannon in branch 'default': Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) http://hg.python.org/cpython/rev/7769c4d72806 -- ___ Python tracker

[issue15767] add ModuleNotFoundError

2013-07-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset 0e4e062751fa by Brett Cannon in branch 'default': Issue #15767: Back out 8d28d44f3a9a related to ModuleNotFoundError. http://hg.python.org/cpython/rev/0e4e062751fa New changeset e3ec8b176a80 by Brett Cannon in branch 'default': Issue #15767: Revert

[issue18302] test_multiprocessing: test.support.import_module() does not ignore the ImportError on SemLock

2013-07-04 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- resolution: - out of date status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18302 ___

[issue18200] Update stdlib to use ModuleNotFoundError

2013-07-04 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- resolution: - rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18200 ___

[issue15767] add ModuleNotFoundError

2013-07-04 Thread Brett Cannon
Changes by Brett Cannon br...@python.org: -- resolution: - rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue15767 ___

[issue18302] test_multiprocessing: test.support.import_module() does not ignore the ImportError on SemLock

2013-07-04 Thread STINNER Victor
STINNER Victor added the comment: Brett: Why did you close this issue? It still occurs on the buildbot: http://buildbot.python.org/all/builders/x86%20FreeBSD%206.4%203.x/builds/3794/steps/test/logs/stdio -- resolution: out of date - status: closed - open

[issue18302] test_multiprocessing: test.support.import_module() does not ignore the ImportError on SemLock

2013-07-04 Thread Brett Cannon
Brett Cannon added the comment: Because I removed ModuleNotFoundError; check the buildbot again and you will notice it is 8 changesets behind, most of which are related to the removal of ModuleNotFoundError. -- resolution: - out of date status: open - closed

[issue18364] Remove _not_found hack from importlib

2013-07-04 Thread Brett Cannon
New submission from Brett Cannon: Having a private attribute has already caused one bug report. I want to try and come up with something that doesn't leak outside of importlib. -- assignee: brett.cannon components: Library (Lib) messages: 192322 nosy: brett.cannon priority: normal

[issue18347] ElementTree corrupts cAse of closing tags when html method is specified

2013-07-04 Thread Roundup Robot
Roundup Robot added the comment: New changeset df79735b21c1 by Christian Heimes in branch '3.3': Issue #18347: ElementTree's html serializer now preserves the case of closing tags. http://hg.python.org/cpython/rev/df79735b21c1 New changeset d5536c06a082 by Christian Heimes in branch 'default':

[issue18347] ElementTree corrupts cAse of closing tags when html method is specified

2013-07-04 Thread Christian Heimes
Changes by Christian Heimes li...@cheimes.de: -- resolution: - fixed stage: needs patch - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18347 ___

[issue16396] Importing ctypes.wintypes on Linux gives a traceback

2013-07-04 Thread Christian Heimes
Christian Heimes added the comment: RM, please decide. :) -- assignee: - benjamin.peterson stage: needs patch - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue16396 ___

[issue5639] Support TLS SNI extension in ssl module

2013-07-04 Thread Mark Kubacki
Changes by Mark Kubacki wm...@hurrikane.de: Removed file: http://bugs.python.org/file30757/python-2.7.5-tlssni.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5639 ___

[issue5639] Support TLS SNI extension in ssl module

2013-07-04 Thread Mark Kubacki
Changes by Mark Kubacki wm...@hurrikane.de: Added file: http://bugs.python.org/file30778/python-2.7.5-tlssni.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5639 ___

[issue5639] Support TLS SNI extension in ssl module

2013-07-04 Thread Mark Kubacki
Changes by Mark Kubacki wm...@hurrikane.de: Removed file: http://bugs.python.org/file30778/python-2.7.5-tlssni.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5639 ___

[issue5639] Support TLS SNI extension in ssl module

2013-07-04 Thread Mark Kubacki
Changes by Mark Kubacki wm...@hurrikane.de: Added file: http://bugs.python.org/file30779/python-2.7.5-tlssni.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5639 ___

[issue18364] Remove _not_found hack from importlib

2013-07-04 Thread Eric Snow
Changes by Eric Snow ericsnowcurren...@gmail.com: -- nosy: +eric.snow ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18364 ___ ___ Python-bugs-list

[issue18279] IDLE Unit test for RstripExtension.py

2013-07-04 Thread Terry J. Reedy
Terry J. Reedy added the comment: I want to make two separate commits. First add mock Text into mock_tk.py, and add a new test_text.py. I suggested looking at the tkinter Text test. I turns out that it only tests a few special search cases. I am guessing that they have something to do with

[issue18200] Update stdlib to use ModuleNotFoundError

2013-07-04 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: As ModuleNotFoundError is going to be reverted so should the changesets for this issue. Could you possibly clarify this?. Pointers? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18200

<    1   2