[issue12470] Fix cut&paste typo in test_shutil

2011-07-03 Thread Georg Brandl
Georg Brandl added the comment: This can be closed? -- assignee: -> orsenthil nosy: +georg.brandl, orsenthil ___ Python tracker <http://bugs.python.org/issu

[issue12043] Update shutil documentation

2011-07-04 Thread Georg Brandl
Georg Brandl added the comment: Yep. The parts changing true/false to ``True``/``False`` should not be committed. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue12

[issue12492] Inconsistent Python find() behavior

2011-07-04 Thread Georg Brandl
Georg Brandl added the comment: I suspect this is a problem where "url" is reassigned to an integer somewhere in code that isn't shown to us. Please post the whole function and the whole traceback if you still think this is a valid bug. -- nosy: +georg.brandl resoluti

[issue12524] change httplib docs POST example

2011-07-10 Thread Georg Brandl
New submission from Georg Brandl : The POST example in the httplib docs references musi-cal.mojam.com, which is now defunct. -- assignee: docs@python components: Documentation keywords: easy messages: 140074 nosy: docs@python, georg.brandl priority: low severity: normal status: open

[issue12525] Unable to run a thread

2011-07-10 Thread Georg Brandl
Georg Brandl added the comment: While it's not explicitly documented that run() also shouldn't be called multiple times, it does not need to be supported. Threads can be started exactly once -- this is already mentioned in the docs. Note that run() simply calls the thread targe

[issue12550] regrtest: register SIGALRM signal using faulthandler

2011-07-14 Thread Georg Brandl
Georg Brandl added the comment: Can this be closed? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue12550> ___ ___ Python-bugs-list mailin

[issue12540] "Restart Shell" command leaves pythonw.exe processes running

2011-07-15 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +ned.deily ___ Python tracker <http://bugs.python.org/issue12540> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue11343] Make errors due to full parser stack identifiable

2011-07-16 Thread Georg Brandl
Georg Brandl added the comment: I like SyntaxLimitError much better than ParserError. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue11

[issue12524] change httplib docs POST example

2011-07-16 Thread Georg Brandl
Georg Brandl added the comment: httpstat.us is has been registered quite recently, and is titled as an "experiment" in the footer. I'd rather use something more likely to be persistent. bugs.python.org seems a better choice. -- ___

[issue11435] Links to source code should now point to hg repo

2011-07-23 Thread Georg Brandl
Georg Brandl added the comment: Done (in rev e32f140a020b). -- ___ Python tracker <http://bugs.python.org/issue11435> ___ ___ Python-bugs-list mailing list Unsub

[issue11975] Fix referencing of built-in types (list, int, ...)

2011-07-23 Thread Georg Brandl
Georg Brandl added the comment: index does create targets, but they are not accessible for creating a link *to* it. They are only used for links from the indices. -- ___ Python tracker <http://bugs.python.org/issue11

[issue12605] Enhancements to gdb 7 debugging hooks

2011-07-23 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +georg.brandl, loewis ___ Python tracker <http://bugs.python.org/issue12605> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12618] py_compile cannot create files in current directory

2011-07-23 Thread Georg Brandl
Georg Brandl added the comment: It might work right now, but in case the file changes before your change can be processed, we will lose the previous changes if we just copy in your new file. IOW, you're making our work much harder and your change is less likely to be ap

[issue12576] urlib.request fails to open some sites

2011-07-23 Thread Georg Brandl
Georg Brandl added the comment: Recognizing "ction: close" as "Connection: close" is exactly what those servers do *not* want you to do. -- nosy: +georg.brandl ___ Python tracker <http://bug

[issue12618] py_compile cannot create files in current directory

2011-07-23 Thread Georg Brandl
Georg Brandl added the comment: Well, we can work with this patch. Thanks. Yes, we can diff against 3.2, but for that you would have at least needed to specify * that you worked on a released version * and that that version is 3.2 Otherwise, we cannot know what to diff against. Note that

[issue12617] Mutable Sequence Type can work not only with iterable in slice[i:j] = t

2011-07-23 Thread Georg Brandl
Georg Brandl added the comment: Yes, this is a bug in bytearray and should be fixed. -- assignee: docs@python -> components: -Documentation nosy: +georg.brandl versions: +Python 2.7, Python 3.2 -Python 3.1 ___ Python tracker &l

[issue12540] "Restart Shell" command leaves pythonw.exe processes running

2011-07-23 Thread Georg Brandl
Georg Brandl added the comment: Hmm, the docs say "Any other value for sig will cause the process to be unconditionally killed by the TerminateProcess API [...]" What happens if you try to use other signals (like signal.SIGKILL) instead o

[issue12540] "Restart Shell" command leaves pythonw.exe processes running

2011-07-23 Thread Georg Brandl
Georg Brandl added the comment: The other question is if it is an access control problem. win32_kill tries to open the process with PROCESS_ALL_ACCESS, while IMO PROCESS_TERMINATE would suffice. -- ___ Python tracker <http://bugs.python.

[issue12540] "Restart Shell" command leaves pythonw.exe processes running

2011-07-23 Thread Georg Brandl
Georg Brandl added the comment: Hmm, on the other hand there may be valid use cases for using os.kill() with a PID. Argh. -- ___ Python tracker <http://bugs.python.org/issue12

[issue12652] Move documentation of test.support into the devguide

2011-07-30 Thread Georg Brandl
Georg Brandl added the comment: -1 from me as well. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue12652> ___ ___ Python-bugs-list mailin

[issue11699] Doc for optparse.OptionParser.get_option_group is wrong

2011-07-30 Thread Georg Brandl
Georg Brandl added the comment: It does make sense, please commit. -- ___ Python tracker <http://bugs.python.org/issue11699> ___ ___ Python-bugs-list mailin

[issue11797] 2to3 does not correct "reload"

2011-07-30 Thread Georg Brandl
Georg Brandl added the comment: I sure didn't have anything to do with that file :) -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/is

[issue12652] Keep test.support docs out of the global docs index

2011-07-30 Thread Georg Brandl
Georg Brandl added the comment: Why is it more useful to open a new issue for the same problem? Nick: there is no such option right now, but I can customize our Sphinx build so that test.support is ignored when building the index. I'll do that if no better consensus is reached on pytho

[issue12662] Allow configparser to process suplicate options

2011-07-31 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> lukasz.langa nosy: +lukasz.langa ___ Python tracker <http://bugs.python.org/issue12662> ___ ___ Python-bugs-list mai

[issue2857] add codec for java modified utf-8

2011-08-11 Thread Georg Brandl
Georg Brandl added the comment: +1 for calling it by the correct name (the docs can of course state that this is equivalent to "Java Modified UTF-8" or however they like to call it). -- ___ Python tracker <http://bugs.python.

[issue11513] chained exception/incorrect exception from tarfile.open on a non-existent file

2011-08-13 Thread Georg Brandl
Georg Brandl added the comment: Fixed in 3.2/default. 2.7 has even more primitive error handling; should the gzopen() be adapted to the 3.x case? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue11

[issue12740] Add struct.Struct.nmemb

2011-08-13 Thread Georg Brandl
Georg Brandl added the comment: While we're at it, let's add str.pbrk() ;) -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue12740> ___ __

[issue12757] undefined name in doctest.py

2011-08-16 Thread Georg Brandl
New submission from Georg Brandl : doctest.py, line 2274 (in 2.7): def shortDescription(self): return "Skipping tests from %s" % module.__name__ "module" is not defined here. Assigning to David since he last changed this line. Test script attached.

[issue12678] test_packaging and test_distutils failures under Windows

2011-08-19 Thread Georg Brandl
Georg Brandl added the comment: This failure needs to be gone in time for 3.2.2. Please find an appropriate way to fix it, even if it is the temporary disabling of a faulty test. -- nosy: +benjamin.peterson, georg.brandl priority: high -> release bloc

[issue12791] Yield" leaks exception being handled as garbage

2011-08-20 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> pitrou nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue12791> ___ ___ Python-bugs-list mailing list Un

[issue12782] Multiple context expressions do not support parentheses for continuation across lines

2011-08-20 Thread Georg Brandl
Georg Brandl added the comment: > is the only other example I can think of One similar example would be "raise" in Python 2. > all compound statements uniformly allowed the same continuation syntax. This is not true: only "import-as" allows this syntax. All othe

[issue12326] Linux 3: code should avoid using sys.platform == 'linux2'

2011-08-20 Thread Georg Brandl
Georg Brandl added the comment: Where's the Doc changes? sys.platform is currently clearly documented as being "linux2" or "linux3". Adding an entry to Misc/NEWS is not enough. -- status: closed -> open ___ Python trac

[issue12792] Document the "type" field of the tracker in the devguide

2011-08-20 Thread Georg Brandl
Georg Brandl added the comment: You mean "pluralize" I guess. -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue12792> ___ ___

[issue12326] Linux 3: code should avoid using sys.platform == 'linux2'

2011-08-20 Thread Georg Brandl
Changes by Georg Brandl : -- priority: normal -> release blocker ___ Python tracker <http://bugs.python.org/issue12326> ___ ___ Python-bugs-list mailing list Un

[issue12326] Linux 3: code should avoid using sys.platform == 'linux2'

2011-08-21 Thread Georg Brandl
Georg Brandl added the comment: Where's the doc updates for the stable branches? Also, we might think about removing this version number everywhere. -- ___ Python tracker <http://bugs.python.org/is

[issue12326] Linux 3: code should avoid using sys.platform == 'linux2'

2011-08-22 Thread Georg Brandl
Georg Brandl added the comment: > I don't know how to update this documentation. Can someone update the > doc, or suggest a patch? This is a strange statement. You changed the implementation, so you should be able to change the documentation

[issue12409] Moving "Documenting Python" to Devguide

2011-08-23 Thread Georg Brandl
Georg Brandl added the comment: +1, and as Eric says, we can do it without changing versions of Sphinx used. -- ___ Python tracker <http://bugs.python.org/issue12

[issue12326] Linux 3: code should avoid using sys.platform == 'linux2'

2011-09-03 Thread Georg Brandl
Georg Brandl added the comment: I've updated 3.2 docs in e11b4c945f7e (currently in the release clone, will be merged to upstream after the release of 3.2.2.) Please commit a similar change to the 2.7 branch. -- ___ Python tracker

[issue12850] [PATCH] stm.atomic

2011-09-05 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue12850> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12906] Slight error in logging module's yaml config

2011-09-05 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: docs@python -> vinay.sajip nosy: +vinay.sajip ___ Python tracker <http://bugs.python.org/issue12906> ___ ___ Python-

[issue6703] cross platform failure and silly test in doctest

2011-09-09 Thread Georg Brandl
Georg Brandl added the comment: > The revision you linked to seems to say that Georg was the one who > added this code. Can you elaborate? Line 355 in trunk was last edited by "edloper". -- ___ Python tracker <http://bugs.p

[issue12947] Examples in library/doctest.html lack the flags

2011-09-09 Thread Georg Brandl
Georg Brandl added the comment: Hehe... Sphinx makes a point of *removing* doctest flags, to enable doctesting of code snippets without distracting the reader with the test-internal flags. I think it's because you used a newer version lo

[issue1710703] zipfile.ZipFile behavior inconsistent.

2010-08-15 Thread Georg Brandl
Georg Brandl added the comment: Agreed with Antoine. Do you want to commit? -- ___ Python tracker <http://bugs.python.org/issue1710703> ___ ___ Python-bug

[issue616013] cPickle documentation incomplete

2010-08-17 Thread Georg Brandl
Changes by Georg Brandl : -- nosy: -georg.brandl ___ Python tracker <http://bugs.python.org/issue616013> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue9633] pdb go stack up/down

2010-08-18 Thread Georg Brandl
Georg Brandl added the comment: The problem here is that changes in the locals are only saved back to the frame when leaving the trace function, and up/down don't do that. This could be fixed by making Pdb.curframe_locals a dictionary for all visited frames while interaction is ru

[issue7077] SysLogHandler can't handle Unicode

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Looks good to me. -- status: pending -> closed ___ Python tracker <http://bugs.python.org/issue7077> ___ ___ Python-bugs-lis

[issue9658] weakref.proxy unequal to its referent in 2.x

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Duplicate of #1170766 -- the lack of tp_richcompare support is reported among other missing slots there. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> weakref.proxy incorrect

[issue9625] argparse: Problem with defaults for variable nargs

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> bethard ___ Python tracker <http://bugs.python.org/issue9625> ___ ___ Python-bugs-list mailing list Unsubscri

[issue9624] "failure to find drive" error message when trying to install something unspecified

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- title: 2755 -> "failure to find drive" error message when trying to install something unspecified ___ Python tracker <http://bugs.pyth

[issue1234473] configure: error: cannot compute sizeof (int), 77

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Agreed. -- resolution: -> out of date status: pending -> closed ___ Python tracker <http://bugs.python.org/issue1234473> ___ __

[issue7453] HPUX 11.00: socketmodule.c -- error 1588: "AI_PASSIVE" undefined.

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Closing - out of date. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue4594] Can't compile with -O3, on ARM, with gcc 3.4.4

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Any progress? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue4594> ___ ___ Python-bugs-list mailin

[issue1637120] Python 2.5 fails to build on AIX 5.3 (xlc_r compiler)

2010-08-21 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/iss

[issue1465838] HP-UX11i: illegal combination of compilation and link flags

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Is this still relevant? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue1465838> ___ ___ Python-bugs-list m

[issue1099] Mac compile fails with pydebug and framework enabled

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Is this still relevant? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue1099> ___ ___ Python-bugs-list m

[issue3246] configure: WARNING: sys/socket.h: present but cannot be compiled

2010-08-21 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/

[issue1434] SocketServer creates non-blocking files

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Closing due to lack of activity. -- nosy: +georg.brandl resolution: -> works for me status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue2268] Fold slice constants

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> rhettinger ___ Python tracker <http://bugs.python.org/issue2268> ___ ___ Python-bugs-list mailing list Unsubscri

[issue2481] locale.strxfrm does not work with Unicode strings

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 2.7 -Python 2.6 ___ Python tracker <http://bugs.python.org/issue2481> ___ ___ Python-bugs-list mailing list Unsub

[issue3177] implement os.startfile on posix and MacOSX

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.2 -Python 2.7 ___ Python tracker <http://bugs.python.org/issue3177> ___ ___ Python-bugs-list mailing list Unsub

[issue2268] Fold slice constants

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.2 -Python 3.0 ___ Python tracker <http://bugs.python.org/issue2268> ___ ___ Python-bugs-list mailing list Unsub

[issue1390197] tempfile misses usecase which requirs renaming

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Closing due to questionable usecase. -- nosy: +georg.brandl resolution: -> rejected status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue3170] test_pydoc has no way to regenerate pristine data

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Ping? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue3170> ___ ___ Python-bugs-list mailing list Unsub

[issue1465838] HP-UX11i: illegal combination of compilation and link flags

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: OK, closing. -- resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue1503] test_xmlrpc is still flakey

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: I've not seen special failures of test_xmlrpc lately. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python

[issue1081824] Rewrite of docs for compiler.visitor

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: compiler is now deprecated and unmaintained anyway. -- resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue3548] subprocess.pipe function

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.2 -Python 2.7, Python 3.1 ___ Python tracker <http://bugs.python.org/issue3548> ___ ___ Python-bugs-list mailin

[issue2595] Multiple integer overflows in imgfile extension module lead to buffer overflow

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: I don't think anyone cares about these modules anymore. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python

[issue1348] httplib closes socket, then tries to read from it

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Is this still relevant? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue1348> ___ ___ Python-bugs-list m

[issue3417] make the fix_dict fixer smarter

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Is this still relevant? -- ___ Python tracker <http://bugs.python.org/issue3417> ___ ___ Python-bugs-list mailing list Unsub

[issue4594] Can't compile with -O3, on ARM, with gcc 3.4.4

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: OK, sounds reasonable. -- resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue3805] sslobj.read py3k takes odd arguments

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: janssen -> pitrou nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue3805> ___ ___ Python-bugs-list mai

[issue1708652] Exact matching

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- versions: +Python 3.2 -Python 2.7 ___ Python tracker <http://bugs.python.org/issue1708652> ___ ___ Python-bugs-list mailing list Unsub

[issue4500] Compiler warnings when compiling Python 3.0 with a C89 compiler

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: These are probably all fixed by now. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue4320] optparse: "1 2 3" should be seen as one string

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Closing due to vague report description. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue4659] compilation warning in Modules/zipimport.c

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Fixed by r81032. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue4973] calendar formatyearpage returns bytes, not str

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Closing, this is working as expected. -- nosy: +georg.brandl resolution: -> works for me status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue4844] ZipFile doesn't range check in _EndRecData()

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> mcherm nosy: +alanmcintyre, mcherm ___ Python tracker <http://bugs.python.org/issue4844> ___ ___ Python-bugs-list mai

[issue1772833] -q (quiet) option for python interpreter

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> georg.brandl ___ Python tracker <http://bugs.python.org/issue1772833> ___ ___ Python-bugs-list mailing list Unsubscri

[issue4475] More verbose error message for Py_FindMethod

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Closing now that 2.x is in bugfix-only. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue3825] Major reworking of Python 2.5.2 re module

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Work has gone on in #2636. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> Regexp 2.7 (modifications to current re 2.2.2) ___ Python tracker <http://bugs.python.o

[issue2486] Recode (parts of) decimal module in C

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> skrah nosy: +skrah ___ Python tracker <http://bugs.python.org/issue2486> ___ ___ Python-bugs-list mailing list Un

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

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Is a patch still forthcoming? -- nosy: +georg.brandl resolution: -> out of date status: open -> pending ___ Python tracker <http://bugs.python.org/iss

[issue1721518] Small case which hangs

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: If at all, this will be fixed by applying #2636. -- resolution: -> duplicate status: open -> closed superseder: -> Regexp 2.7 (modifications to current re 2.2.2) ___ Python tracker <http://bug

[issue5355] Expat parser error constants are string descriptions

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: After talking to Fred, I'll add a "codes" attribute mapping the error constant strings to their codes. Changing the constants to integers would be very bad for b/w compatibility. -- assignee: -> georg.brandl nosy: +georg.brandl ver

[issue2218] Enhanced hotshot profiler with high-resolution timer

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: hotshot won't get any more updates. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python

[issue4327] Patch: simplify complex constant assignment statements

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: I'm going to reject this; it adds a whole lot of code for optimizing very a minor usecase. -- nosy: +georg.brandl resolution: -> rejected status: open -> closed ___ Python tracker <http://bugs.python

[issue4596] 2to3 does not fail as early as possible.

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Closing. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue433024] SRE: (?flag) isn't properly scoped

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: I don't think this should be changed anymore, at least not without a flag. Anyway, it is implemented in #2636. -- nosy: +georg.brandl status: open -> closed superseder: Major reworking of Python 2.5.2 re module -> Regexp 2.7 (modifications

[issue433027] SRE: (?-flag) is not supported.

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: See #2636, which implements this. -- dependencies: -Major reworking of Python 2.5.2 re module nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> Regexp 2.7 (modifications to current

[issue231540] threads and profiler don't work together

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: OK, closing as out of date. -- resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.org/is

[issue433029] SRE: posix classes aren't supported

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Implemented in #2636. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed superseder: -> Regexp 2.7 (modifications to current re 2.2.2) ___ Python tracker <http://bugs.python.org

[issue433030] SRE: Atomic Grouping (?>...) is not supported

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Implemented in #2636. -- nosy: +georg.brandl resolution: -> duplicate status: open -> closed ___ Python tracker <http://bugs.python.org/is

[issue2899] Fixers find, rfind, etc in 'string' module

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: I guess this will not happen then. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue5016] FileIO.seekable() can return False

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- versions: -Python 2.6 ___ Python tracker <http://bugs.python.org/issue5016> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue3101] global function _add_one_to_index_C

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Functions are still present and non-static in trunk. -- assignee: teoliphant -> pitrou nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/iss

[issue5028] tokenize.generate_tokens doesn't always return logical line

2010-08-21 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> d...@python nosy: +d...@python ___ Python tracker <http://bugs.python.org/issue5028> ___ ___ Python-bugs-list mai

[issue1337876] Inconsistent use of buffer interface in string and unicode

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: This won't get applied anymore to 2.x. -- nosy: +georg.brandl resolution: -> out of date status: open -> closed ___ Python tracker <http://bugs.python.or

[issue1748015] Module-level stack scopes have incorrect bindings.

2010-08-21 Thread Georg Brandl
Georg Brandl added the comment: Cannot reproduce in trunk. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/iss

[issue9649] wrong default for sort_keys in json module documentation

2010-08-22 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r84264. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

<    1   2   3   4   5   6   7   8   9   10   >