[issue6678] inspect.currentframe documentation omits optional depth parameter

2010-08-09 Thread Georg Brandl
Georg Brandl added the comment: Terry: due to the additional indirection by making currentframe() a separate function, _getframe(0) would return the frame in currentframe(). -- ___ Python tracker <http://bugs.python.org/issue6

[issue5950] Make zipimport work with zipfile containing comments

2010-08-09 Thread Georg Brandl
Georg Brandl added the comment: Why? -- versions: +Python 3.2 -Python 3.3 ___ Python tracker <http://bugs.python.org/issue5950> ___ ___ Python-bugs-list mailin

[issue7351] Documentation typos found in "zipfile — Work with ZIP archives"

2010-08-10 Thread Georg Brandl
Changes by Georg Brandl : -- status: pending -> closed ___ Python tracker <http://bugs.python.org/issue7351> ___ ___ Python-bugs-list mailing list Unsubscri

[issue29557] binhex documentation claims unknown bug

2017-02-15 Thread Georg Brandl
Georg Brandl added the comment: I don't remember anything specific about this, sorry. -- ___ Python tracker <http://bugs.python.org/issue29557> ___ ___ Pytho

[issue27228] just for clearing: os.path.normpath("file://a") returns "file:/a"

2016-06-05 Thread Georg Brandl
Georg Brandl added the comment: `os.path` does not handle URIs of any type, so this behavior is correct as Steven says. -- nosy: +georg.brandl resolution: -> not a bug status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue12345] Add math.tau

2016-08-13 Thread Georg Brandl
Georg Brandl added the comment: Please folks. Stop taking this so seriously and remember that this is the language where you can type in >>> import antigravity and it actually works. (Sort of.) -- ___ Python tracker <http://bug

[issue26331] Tokenizer: allow underscores for grouping in numeric literals

2016-08-15 Thread Georg Brandl
Georg Brandl added the comment: @Serhiy/anyone: can I get another review, so that we can commit this in time for beta? Thanks! -- ___ Python tracker <http://bugs.python.org/issue26

[issue17192] libffi-3.0.12 import

2013-02-24 Thread Georg Brandl
Georg Brandl added the comment: Updating 3.x branches is fine with me. -- ___ Python tracker <http://bugs.python.org/issue17192> ___ ___ Python-bugs-list mailin

[issue17494] References to stack bottom are confusing

2013-03-20 Thread Georg Brandl
Georg Brandl added the comment: Sorry, I find your suggested termini more confusing. * first/last: the first that was put onto the stack (i.e. bottom) or the first to be popped off (i.e. top)? * root/terminal: that makes you think of trees, but a stack is not a tree. top/bottom is the

[issue10224] Build 3.x documentation using python3.x

2013-03-21 Thread Georg Brandl
Georg Brandl added the comment: A problem with using automatic tarballs from hg.python.org is that they take server load to generate, every time someone builds the docs from a new checkout. -- ___ Python tracker <http://bugs.python.org/issue10

[issue10224] Build 3.x documentation using python3.x

2013-03-21 Thread Georg Brandl
Georg Brandl added the comment: Ok, that sounds good then. BTW, for 3.3+ would it make sense instead to create a virtualenv and directly install the required versions from pypi? -- ___ Python tracker <http://bugs.python.org/issue10

[issue17488] subprocess.Popen bufsize=0 parameter behaves differently in Python 3 than in 2

2013-03-23 Thread Georg Brandl
Georg Brandl added the comment: Considering that this behavior has been present in all of Python 3, it does not seem useful to make a backwards incompatible change in bugfix releases. You could change it in 3.4 as a minor API change, but you've indicated that that wouldn't make se

[issue17488] subprocess.Popen bufsize=0 parameter behaves differently in Python 3 than in 2

2013-03-23 Thread Georg Brandl
Georg Brandl added the comment: OK. That was a more passionate statement :) It would actually be nice to know about Windows, but the way you describe it is that the default behavior now is quite useless. Does bufsize=0 have any sensible use on Python 3? Anyway, you've convinced me -

[issue17514] Add the license to argparse.py

2013-03-24 Thread Georg Brandl
Georg Brandl added the comment: > Speaking personally, I wouldn't want license boilerplates to start > cluttering every file in the Python source tree. They are an annoyance > when opening and reading source files. On the other hand, a simple file header would make sense, and

[issue17514] Add the license to argparse.py

2013-03-24 Thread Georg Brandl
Georg Brandl added the comment: BTW, the correct blurb would probably be # Copyright 200X Steven Bethard. All Rights Reserved. # Licensed to PSF under a Contributor Agreement. -- ___ Python tracker <http://bugs.python.org/issue17

[issue17514] Add the license to argparse.py

2013-03-25 Thread Georg Brandl
Georg Brandl added the comment: > I'm not sure that's correct, unless only Steven has ever contributed > to it. To be correct, you'd have to list all significant contributors. Well, then add "and contributors" :) But we have quite a few files with such a head

[issue17516] Dead code should be removed

2013-03-25 Thread Georg Brandl
Georg Brandl added the comment: The instance in reindent.py uses the "docstring for attributes" feature that some documentation tools supports, which is a unused string *after* the attribute. When you turn that into a comment, put the comment *before* the attribute. -

[issue17538] Document XML Vulnerabilties

2013-03-26 Thread Georg Brandl
Georg Brandl added the comment: * I would take out the "erroneous" of "erroneous or maliciously constructed" in the disclaimers. The odds of creating one of the "bombings" by chance are slim. * The names of attacks in the table are quite opaque if you haven

[issue17538] Document XML Vulnerabilties

2013-03-26 Thread Georg Brandl
Georg Brandl added the comment: 2. That would be good. For this table the "simple" rst tables should be fine: = = head head = = body body body body = = 3. Once per XML logical handling module/package seems quite enough. 4. The warnings only l

[issue17550] --enable-profiling does nothing (shell syntax bug in configure.ac)

2013-03-26 Thread Georg Brandl
Georg Brandl added the comment: Done, thanks for the pointer! -- ___ Python tracker <http://bugs.python.org/issue17550> ___ ___ Python-bugs-list mailing list Unsub

[issue17538] Document XML Vulnerabilties

2013-03-26 Thread Georg Brandl
Georg Brandl added the comment: I still see "erroneous" in there... otherwise looks good to me. -- ___ Python tracker <http://bugs.python.org/issue17538> ___ __

[issue17546] Document the circumstances where the locals() dict gets updated

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: locals() being useful to the majority of Python software is news to me... -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue17

[issue17556] os.path.join() converts None to '' by default

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Since most other os.path functions also choke (intentionally) on None values, I agree and would point out that if you want this behavior, it's easy to do the "or ''" dance on the caller side. -- nosy: +georg.brandl resolution:

[issue1379984] HP-UX: Can't shl_load() a library containing Thread Local

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing this old pending issue due to lack of response. -- status: pending -> closed ___ Python tracker <http://bugs.python.org/issue1

[issue17559] str.is* implementation seem suboptimal for single character strings

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Benjamin, if that comment means there's still something to be done, please reopen. -- nosy: +georg.brandl resolution: -> works for me status: open -> closed ___ Python tracker <http://bugs.python.

[issue9800] Fast path for small int-indexing of lists and tuples

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing this old pending issue due to lack of activity. -- keywords: +needs review -patch nosy: +georg.brandl resolution: -> rejected status: pending -> closed ___ Python tracker <http://bugs.python.org/

[issue3862] test_array fails on FreeBSD7 amd64

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing this old pending issue due to lack of activity. -- nosy: +georg.brandl status: pending -> closed ___ Python tracker <http://bugs.python.org/iss

[issue813453] restrictions in _tkinter built with threaded tk undocumented

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing this due to lack of activity. -- nosy: +georg.brandl status: pending -> closed ___ Python tracker <http://bugs.python.org/issue

[issue6671] webbrowser doesn't respect xfce default browser

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing to due to lack of a better way to detect Xfce. -- assignee: georg.brandl -> resolution: -> rejected status: open -> closed ___ Python tracker <http://bugs.python.o

[issue5633] fix for timeit when the statement is a string and the setup is not (and tests)

2013-03-28 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> ___ Python tracker <http://bugs.python.org/issue5633> ___ ___ Python-bugs-list mailing list Unsubscri

[issue9633] pdb go stack up/down

2013-03-28 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> ___ Python tracker <http://bugs.python.org/issue9633> ___ ___ Python-bugs-list mailing list Unsubscri

[issue5993] python produces zombie in webbrowser.open

2013-03-28 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> ___ Python tracker <http://bugs.python.org/issue5993> ___ ___ Python-bugs-list mailing list Unsubscri

[issue8478] tokenize.untokenize first token missing failure case

2013-03-28 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> ___ Python tracker <http://bugs.python.org/issue8478> ___ ___ Python-bugs-list mailing list Unsubscri

[issue10799] Improve webbrowser (.open) doc and behavior

2013-03-28 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> ___ Python tracker <http://bugs.python.org/issue10799> ___ ___ Python-bugs-list mailing list Unsubscri

[issue3290] python-config --cflags includes irrelevant flags

2013-03-28 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> doko nosy: +doko ___ Python tracker <http://bugs.python.org/issue3290> ___ ___ Python-bugs-list mai

[issue15019] String termination on Linux

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing due to lack of response. -- nosy: +georg.brandl resolution: -> works for me status: pending -> closed ___ Python tracker <http://bugs.python.org/i

[issue16767] Cannot install Python 2.7 in Wine 1.4.1

2013-03-28 Thread Georg Brandl
Changes by Georg Brandl : -- status: pending -> closed ___ Python tracker <http://bugs.python.org/issue16767> ___ ___ Python-bugs-list mailing list Unsubscri

[issue15186] Support os.walk(dir_fd=)

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing (it seems everybody agreed it's not a good idea). -- nosy: +georg.brandl resolution: -> rejected status: pending -> closed ___ Python tracker <http://bugs.python.

[issue17103] ampersand "&" in path prevents compilation of Python

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing as this is a bug in autoconf. 2.69 is still the latest released version, so we'll get the fix whenever the new version is out and sufficiently widely distributed. -- nosy: +georg.brandl resolution: -> invalid status: pending -

[issue12119] distutils and python -B

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Can this be closed? -- nosy: +georg.brandl status: pending -> open ___ Python tracker <http://bugs.python.org/issue12119> ___ _

[issue13000] unhandled exception at install

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing due to lack of response. -- status: pending -> closed ___ Python tracker <http://bugs.python.org/issue13000> ___ ___ Py

[issue9948] findCaller is slow and loses case information on Windows

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing due to lack of response. -- nosy: +georg.brandl resolution: -> fixed status: pending -> closed ___ Python tracker <http://bugs.python.org/

[issue5970] sys.exc_info leaks into a generator

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Out of date now that 2.7 is also in maintenance mode. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5884] pydoc to return error status code

2013-03-28 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.4 -Python 2.7, Python 3.1 ___ Python tracker <http://bugs.python.org/issue5884> ___ ___ Python-bugs-list mailin

[issue3938] Clearing globals; interpreter -- IDLE difference

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Terry, do you still think this is important to fix? -- nosy: +georg.brandl versions: +Python 2.7, Python 3.3, Python 3.4 -Python 3.0 ___ Python tracker <http://bugs.python.org/issue3

[issue6395] Infinite Recursion during Unpickling a codecs Object

2013-03-28 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.3, Python 3.4 -Python 3.2 ___ Python tracker <http://bugs.python.org/issue6395> ___ ___ Python-bugs-list mailin

[issue7300] Unicode arguments in str.format()

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Agreed with Eric. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue16273] f.tell() returning negative number on Windows build

2013-03-28 Thread Georg Brandl
Changes by Georg Brandl : -- resolution: -> wont fix status: open -> pending ___ Python tracker <http://bugs.python.org/issue16273> ___ ___ Python-bugs-

[issue7565] Increasing resource.RLIMIT_NOFILE has no effect

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing due to lack of response. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue7209] Prevents uint_t from being used on QNX

2013-03-28 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue7209> ___ ___ Python-bugs-list mailing list Unsub

[issue5851] Add a stream parameter to gc.set_debug

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Patch would need to be updated for Python 3.4. (Please also upload it to this issue.) -- nosy: +georg.brandl versions: +Python 3.4 -Python 2.7 ___ Python tracker <http://bugs.python.org/issue5

[issue9134] sre bug: lastmark_save/restore

2013-03-28 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/issue9134> ___ ___ Python-bugs-list mailing list Unsub

[issue4022] 2.6 dependent on c:\python26\ on windows

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing due to lack of activity. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue616013] cPickle documentation incomplete

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Three years later, I don't think anyone is interested in documenting the outdated cPickle. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.o

[issue6310] Windows "App Paths" key is not checked when installed for current user

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing due to lack of response. -- nosy: +georg.brandl status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue9672] test_xpickle fails on Windows: invokes pythonx.y instead of pythonxy

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Closing for reasons Antoine stated. -- nosy: +georg.brandl resolution: -> works for me status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue9986] PDF files of python docs have text missing

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: Duplicate of #4173. -- resolution: -> duplicate status: open -> closed superseder: -> PDF documentation: long verbatim lines are cut off at right hand side ___ Python tracker <http://bugs.python.o

[issue6661] Transient test_multiprocessing failure (test_active_children)

2013-03-28 Thread Georg Brandl
Georg Brandl added the comment: 2.5 years later I don't think it's much use keeping this open. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.p

[issue17589] Make documentation about macros in C API explicit about rvalue vs statement

2013-03-31 Thread Georg Brandl
Georg Brandl added the comment: There are also some macros usable as lvalues, such as Py_REFCNT or Py_SIZE (they aren't documented at all currently). Anyway, documenting as statement-only unless explicitly stated differently is fine wi

[issue17615] String comparison performance regression

2013-04-03 Thread Georg Brandl
Georg Brandl added the comment: Reopening for consideration of using wmemcmp(). -- nosy: +georg.brandl status: closed -> open ___ Python tracker <http://bugs.python.org/issu

[issue17626] set's __isub__ doesn't support non-sets.

2013-04-03 Thread Georg Brandl
Georg Brandl added the comment: Assigning to Raymond for confirmation, but IIRC this is by design. -- assignee: -> rhettinger nosy: +georg.brandl, rhettinger status: open -> pending ___ Python tracker <http://bugs.python.org/i

[issue17625] IDLE regression -- Search and Replace Window doesn't automatically clear

2013-04-04 Thread Georg Brandl
Georg Brandl added the comment: Done, thanks. -- ___ Python tracker <http://bugs.python.org/issue17625> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13169] Regular expressions with 0 to 65536 repetitions raises OverflowError

2013-04-04 Thread Georg Brandl
Georg Brandl added the comment: "Python refuses to start." is not a very good description. * What script are you running/module are you importing? * What is the traceback/error message? -- ___ Python tracker <http://bugs.python.o

[issue13169] Regular expressions with 0 to 65536 repetitions raises OverflowError

2013-04-04 Thread Georg Brandl
Georg Brandl added the comment: And this happens when you simply start Python, not executing any code? Can you start with "python -S", then do "import _sre", and see if it has a _sre.MAXREPEAT attribute? -- ___ P

[issue13169] Regular expressions with 0 to 65536 repetitions raises OverflowError

2013-04-04 Thread Georg Brandl
Georg Brandl added the comment: Just tested with 2.7.4rc1 32bit on Windows 7; no problem here. I suspect your 2.7.4rc1 install picks up a python27.dll from an earlier version. -- resolution: -> fixed status: open -> pending ___ Python t

[issue13169] Regular expressions with 0 to 65536 repetitions raises OverflowError

2013-04-04 Thread Georg Brandl
Georg Brandl added the comment: Thanks for the confirmation! -- status: open -> closed ___ Python tracker <http://bugs.python.org/issue13169> ___ ___ Python-

[issue17620] Python interactive console doesn't use sys.stdin for input

2013-04-06 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> pitrou nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue17620> ___ ___ Python-bugs-list mailing list Un

[issue17343] Add a version of str.split which returns an iterator

2013-04-07 Thread Georg Brandl
Georg Brandl added the comment: I'm guessing Terry wanted to say "os.listdir" instead of "os.walk". -- nosy: +georg.brandl ___ Python tracker <http:

[issue17610] Qsort function misuse in typeobject.c

2013-04-07 Thread Georg Brandl
Changes by Georg Brandl : -- status: closed -> open ___ Python tracker <http://bugs.python.org/issue17610> ___ ___ Python-bugs-list mailing list Unsubscri

[issue17570] Improve devguide Windows instructions

2013-04-07 Thread Georg Brandl
Georg Brandl added the comment: At least two of the changes in the patch are incorrect because they refer to the Mac OS X "python.exe". -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.o

[issue17650] There is no exception correspond to errno EROFS

2013-04-07 Thread Georg Brandl
Changes by Georg Brandl : -- resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/issue17650> ___ ___ Python-bugs-list

[issue17651] Errno checking replaced by concrete classes inherited from OSError

2013-04-07 Thread Georg Brandl
New submission from Georg Brandl: Why not attach this to #16705 directly? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue17651> ___ ___

[issue17650] There is no exception correspond to errno EROFS

2013-04-08 Thread Georg Brandl
Georg Brandl added the comment: Antoine will have to decide on this, but IMO now that we released the PEP 3151 set in Python 3.3, we should not continue adding new builtin exceptions in every release. -- ___ Python tracker <http://bugs.python.

[issue17661] documentation of '%r' links to the wrong repr

2013-04-08 Thread Georg Brandl
Georg Brandl added the comment: It just highlights the mistake we made calling a builtin module the same name as a builtin function :) -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue17

[issue17666] Extra gzip headers breaks _read_gzip_header

2013-04-10 Thread Georg Brandl
Georg Brandl added the comment: Serhiy, do you want to fix this also in 3.2? I'll roll a brown-paper-bag release of 3.2 and 3.3 together with 2.7.5. -- ___ Python tracker <http://bugs.python.org/is

[issue17656] Python 2.7.4 breaks ZipFile extraction of zip files with unicode member paths

2013-04-10 Thread Georg Brandl
Georg Brandl added the comment: I guess I will join with 3.2 and 3.3 for #17666. -- ___ Python tracker <http://bugs.python.org/issue17656> ___ ___ Python-bug

[issue17656] Python 2.7.4 breaks ZipFile extraction of zip files with unicode member paths

2013-04-10 Thread Georg Brandl
Georg Brandl added the comment: Yes, although the new releases will get the standard rc period anyway. -- ___ Python tracker <http://bugs.python.org/issue17

[issue17707] Multiprocessing queue get method does not block for short timeouts

2013-04-13 Thread Georg Brandl
Georg Brandl added the comment: Very good, regression #2 for 3.3.2. Keep them coming right now :) -- ___ Python tracker <http://bugs.python.org/issue17

[issue17707] Multiprocessing queue get method does not block for short timeouts

2013-04-13 Thread Georg Brandl
Georg Brandl added the comment: Don't worry, mistakes happen. My message was actually positive: it's better to catch the problems now than two weeks after the regression fix release... -- ___ Python tracker <http://bugs.python.o

[issue17712] test_gdb failures

2013-04-13 Thread Georg Brandl
Georg Brandl added the comment: I guess that warning needs to be added to all the others in test_gdb around line 150... -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue17

[issue9538] Replace confusing pseudoname 'object' in special methods section.

2013-04-13 Thread Georg Brandl
Georg Brandl added the comment: Note that Sphinx searches for "object.__foo__" when :meth:`__foo__` is used; this change will break all those links. For that reason I'm -1 to this change: I don't see the perceived issue as

[issue17661] documentation of '%r' links to the wrong repr

2013-04-14 Thread Georg Brandl
Georg Brandl added the comment: Fixed, thanks. -- ___ Python tracker <http://bugs.python.org/issue17661> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17727] document that some distributions change site.py defaults

2013-04-14 Thread Georg Brandl
New submission from Georg Brandl: >From the docs@ list: """ Dear all, the first paragraph of the documentation for the site module states that site.py constructs four directories using a head and tail part, and that one of the tail parts would be lib/pythonX.Y/site-pa

[issue17728] format() default precisions undocumented

2013-04-14 Thread Georg Brandl
New submission from Georg Brandl: The docs for % formatting say what the default precision for presentation types e, f, g is. I couldn't find the same for format(). -- assignee: eric.smith components: Documentation messages: 186902 nosy: eric.smith, georg.brandl priority: n

[issue17729] advocacy howto improvements

2013-04-14 Thread Georg Brandl
New submission from Georg Brandl: >From docs@: """ The howto-advocacy is interesting. You might consider removing the following sentences, which I found personally gave me a negative impression: "python hasn't had all the publicity" to my mind gives the impre

[issue13050] RLock support the context manager protocol but this is not documented

2013-04-14 Thread Georg Brandl
Georg Brandl added the comment: Thanks, closing. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue17728] format() default precisions undocumented

2013-04-15 Thread Georg Brandl
Georg Brandl added the comment: Thanks! -- ___ Python tracker <http://bugs.python.org/issue17728> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue7475] codecs missing: base64 bz2 hex zlib hex_codec ...

2013-04-23 Thread Georg Brandl
Georg Brandl added the comment: FWIW, I'm not interested in seeing this added anymore. -- ___ Python tracker <http://bugs.python.org/issue7475> ___ ___ Pytho

[issue17854] symmetric difference operation applicable to more than two sets

2013-04-27 Thread Georg Brandl
Georg Brandl added the comment: Can you suggest a change? I don't see a problem here; giving multiple operators for the other operations does not imply that they are not treated as left-associative. -- nosy: +georg.brandl ___ Python tracker

[issue17851] Grammar errors in threading.Lock documentation

2013-04-27 Thread Georg Brandl
Georg Brandl added the comment: I see no problem with both points: "block" is the correct verb form in this context ("attempts" being plural), and the version including comma reads better to me. -- nosy: +georg.brandl resolution: -> works for me

[issue17858] Different documentation for identical methods

2013-04-27 Thread Georg Brandl
Georg Brandl added the comment: This patch includes changes from #17851, please remove that (but you can remove the comma after "block"). -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.o

[issue17843] Lib/test/testbz2_bigmem.bz2 trigger virus warnings

2013-04-28 Thread Georg Brandl
Georg Brandl added the comment: Thanks, I've got it from here. -- versions: -Python 2.7, Python 3.3, Python 3.4 ___ Python tracker <http://bugs.python.org/is

[issue15535] Fix pickling efficiency of named tuples in 2.7.3

2013-04-28 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.2 ___ Python tracker <http://bugs.python.org/issue15535> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17547] "checking whether gcc supports ParseTuple __format__... " erroneously returns yes with gcc 4.8

2013-04-28 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.2 ___ Python tracker <http://bugs.python.org/issue17547> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17192] libffi-3.0.13 import

2013-04-28 Thread Georg Brandl
Georg Brandl added the comment: Greg? -- ___ Python tracker <http://bugs.python.org/issue17192> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17123] Add OCSP support to ssl module

2013-04-28 Thread Georg Brandl
Changes by Georg Brandl : -- versions: -Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue17123> ___ ___ Python-bugs-list mailing list Unsub

[issue17425] Update OpenSSL versions in Windows builds

2013-04-28 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.3 ___ Python tracker <http://bugs.python.org/issue17425> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue17192] libffi-3.0.13 import

2013-04-29 Thread Georg Brandl
Georg Brandl added the comment: Thanks. For 3.2, please attach a patch here. -- ___ Python tracker <http://bugs.python.org/issue17192> ___ ___ Python-bugs-list m

[issue17192] libffi-3.0.13 import

2013-04-30 Thread Georg Brandl
Georg Brandl added the comment: OK, 3.2 block disabled, push away. -- ___ Python tracker <http://bugs.python.org/issue17192> ___ ___ Python-bugs-list mailin

[issue17857] sqlite modules doesn't build with 2.7.4 on Mac OS X 10.4

2013-05-01 Thread Georg Brandl
Georg Brandl added the comment: Would be nice, yes. -- ___ Python tracker <http://bugs.python.org/issue17857> ___ ___ Python-bugs-list mailing list Unsubscribe:

<    45   46   47   48   49   50   51   52   53   >