[issue1208] Match object should be guaranteed to always be true

2007-09-26 Thread Georg Brandl
Georg Brandl added the comment: Fixed in the docs as r58270. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1212] 3.0 tutorial/introduction.rst mentions 'long'

2007-09-28 Thread Georg Brandl
Georg Brandl added the comment: Thanks, committed in r58281. -- nosy: +georg.brandl resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1219] 3.0 library/stdtypes.rst patch

2007-09-28 Thread Georg Brandl
Georg Brandl added the comment: Extended and committed in r58282. -- resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1219] 3.0 library/stdtypes.rst patch

2007-09-28 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> georg.brandl keywords: +patch nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1219> __

[issue1211] cleanup patch for 3.0 tutorial/interpreter.rst

2007-09-28 Thread Georg Brandl
Georg Brandl added the comment: Thanks, committed in r58281. (I reordered the encoding section a bit.) -- nosy: +georg.brandl resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1213] 3.0 tutorial/classes.rst patch

2007-09-28 Thread Georg Brandl
Georg Brandl added the comment: Thanks, committed in r58281. -- nosy: +georg.brandl resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1221] email.Utils.parseaddr("a(WRONG)@b")

2007-09-30 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> barry nosy: +barry __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1221> __ ___ Python-bugs-list mailing li

[issue1529018] Move firewall warning to "about" menu

2007-10-03 Thread Georg Brandl
Changes by Georg Brandl: -- status: open -> closed _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1529018> _ ___ Python-bugs-list mailing li

[issue1231] PEPs 344 and 3134 contain incorrect hyperlinks.

2007-10-03 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r58312, by inserting "number" between RFC and 88. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://

[issue1242] test

2007-10-06 Thread Georg Brandl
Georg Brandl added the comment: This is a bug tracker, not a discussion forum. Please go to the comp.lang.python newsgroup. -- nosy: +georg.brandl resolution: -> invalid status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://

[issue1244] Error on 'raise' does not show correct line number and Traceback message

2007-10-08 Thread Georg Brandl
Georg Brandl added the comment: The raise statement without any arguments re-raises the last raised exception, complete with traceback, see http://docs.python.org/dev/reference/simple_stmts.html#the-raise-statement. Therefore your usage of the raise statement is incorrect; you should always

[issue1245] Document PySys_* API functions

2007-10-08 Thread Georg Brandl
Georg Brandl added the comment: To generalize, almost all public PySys_* functions aren't documented yet. -- nosy: +georg.brandl title: Document PySys_GetObject() -> Document PySys_* API functions __ Tracker <[EMAIL PROTECTED]> <http:

[issue1123] split(None, maxsplit) does not strip whitespace correctly

2007-10-08 Thread Georg Brandl
Georg Brandl added the comment: This should now be fixed in r58368. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1226] lib/sched.py superfluous code for removal

2007-10-08 Thread Georg Brandl
Georg Brandl added the comment: Done as part of r58369. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1228] 3.0 tutorial/datastructures.rst patch

2007-10-08 Thread Georg Brandl
Georg Brandl added the comment: Applied in r58375, thanks! -- nosy: +georg.brandl resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1199] Documentation for tp_as_number... version 2.6

2007-10-08 Thread Georg Brandl
Georg Brandl added the comment: Committed as r58376. -- resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1271] Raw string parsing fails with backslash as last character

2007-10-12 Thread Georg Brandl
Georg Brandl added the comment: There's more to allowing \ at the end of a raw string: if you do that, the raw string will end at the first quote character which is the same as the opening one, so you can't put such a quote character into a raw string anymore. At the moment, you can, b

[issue1276] LookupError: unknown encoding: X-MAC-JAPANESE

2007-10-14 Thread Georg Brandl
Changes by Georg Brandl: -- versions: +Python 3.0 __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1276> __ ___ Python-bugs-list mailing list Unsubs

[issue1643641] Fix Bug 1362475 Text.edit_modified() doesn't work

2007-10-14 Thread Georg Brandl
Changes by Georg Brandl: -- resolution: -> duplicate status: open -> closed superseder: -> Text.edit_modified() fails _ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1281] typo in documentation - lib ref section 14.3.3.4

2007-10-18 Thread Georg Brandl
Georg Brandl added the comment: In fact, the error is not a typo, but a glitch in latex2html's handling of "--". It's already corrected in the 2.5 branch and needs no correction in later branches. -- nosy: +georg.brandl resolution: -> out of date

[issue602345] option for not writing .py[co] files

2007-10-19 Thread Georg Brandl
Georg Brandl added the comment: Since the PEP is now withdrawn, I updated Neal's patch to the trunk and added the env variable as well as the sys module value, including documentation. -- priority: low -> normal Added file: http://bugs.python.org/file8567/no-pyc-f

[issue1303] adapt str8 constructor to bytes constructor

2007-10-19 Thread Georg Brandl
New submission from Georg Brandl: This makes the str8 constructor accept the same kinds of types as the bytes constructor. I had to fix instances of str8("abc") to str8(b"abc") to make tests pass again. The only remaining failure should be test_str -- the string test suit

[issue1284] typo in lib doc 7.3.2.1 MaildirMessage

2007-10-19 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r58545, r58546 (2.5). -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1061] ABC caches should use weak refs

2007-10-20 Thread Georg Brandl
Georg Brandl added the comment: Attaching a new patch; this one passes regrtest -R:: of test_io without apparent reference leaks. -- assignee: georg.brandl -> gvanrossum Added file: http://bugs.python.org/file8577/wr.diff __ Tracker <[EMAIL PRO

[issue1307] smtpd.SMTPServer throws exception on MAIL command with no arg

2007-10-21 Thread Georg Brandl
Changes by Georg Brandl: -- keywords: +patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1307> __ ___ Python-bugs-list mailing list Unsubs

[issue1310] tempfile breaks on Windows

2007-10-22 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r58590. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1061] ABC caches should use weak refs

2007-10-22 Thread Georg Brandl
Georg Brandl added the comment: Committed r58602. -- status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1061> __ ___ Python-bugs-li

[issue1303] adapt str8 constructor to bytes constructor

2007-10-22 Thread Georg Brandl
Georg Brandl added the comment: I'll perhaps find some time today to try and make the tests useful and consistent again. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python

[issue1071] unicode.translate() doesn't error out on invalid translation table

2007-10-22 Thread Georg Brandl
Georg Brandl added the comment: Committed to Py3k as r58603. -- resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1089974] mmap missing offset parameter

2007-10-22 Thread Georg Brandl
Changes by Georg Brandl: -- resolution: -> fixed status: open -> closed superseder: -> add offset to mmap _ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1286] fileinput, StringIO, and cStringIO do not support the with protocol

2007-10-23 Thread Georg Brandl
Georg Brandl added the comment: Makes sense to me. -- nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1286> __ ___ Python-bugs-list

[issue1316] fix a few PyInt_Check vs PyLong_Check problems

2007-10-23 Thread Georg Brandl
New submission from Georg Brandl: This fixes a few places where PyInt_Check and PyLong_Check are used redundantly, and where the checks must be changed now that there's only PyLong. -- assignee: gvanrossum files: long_check.diff keywords: patch, py3k messages: 56685 nosy: georg.b

[issue1303] adapt str8 constructor to bytes constructor

2007-10-23 Thread Georg Brandl
Georg Brandl added the comment: Okay, somebody seems to have started this, so I won't interfere for now. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1303> __ _

[issue1316] fix a few PyInt_Check vs PyLong_Check problems

2007-10-23 Thread Georg Brandl
Georg Brandl added the comment: Committed r58617. -- status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1316> __ ___ Python-bugs-li

[issue1321] TimedRotatingFileHandler logic for day of week is wrong

2007-10-24 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> vsajip nosy: +vsajip __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1321> __ ___ Python-bugs-list mailing li

[issue1303] adapt str8 constructor to bytes constructor

2007-10-24 Thread Georg Brandl
Georg Brandl added the comment: Okay, committed in r58640. Gregory wrote this in test_bytes: # I've started porting some of those into buffer_tests.py, we should port # the rest that make sense (the code can be cleaned up to use modern # unittest methods at the same time). -- s

[issue1077] itertools missing, causes interactive help to break

2007-10-24 Thread Georg Brandl
Changes by Georg Brandl: -- status: open -> pending __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1077> __ ___ Python-bugs-list mailing list Uns

[issue1753371] Open always create new tab or new browser

2007-10-24 Thread Georg Brandl
Changes by Georg Brandl: -- status: pending -> closed _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1753371> _ ___ Python-bugs-list mailing li

[issue1077] itertools missing, causes interactive help to break

2007-10-24 Thread Georg Brandl
Changes by Georg Brandl: -- status: pending -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1077> __ ___ Python-bugs-list mailing list Uns

[issue1287] os.environ.pop doesn't work

2007-10-24 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r58651 for 2.6. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1287] os.environ.pop doesn't work

2007-10-26 Thread Georg Brandl
Georg Brandl added the comment: You're right, fixed that in r58675. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1287> __ ___ Python-bugs-list mailing

[issue1338] pickling bytes?

2007-10-26 Thread Georg Brandl
Georg Brandl added the comment: Having explicit support for sets at least would be consistent with all other types for which there is a display form. (Or else, {1,2,3} could be a different thing after unpickling if the set builtin is overwritten.) -- nosy: +georg.brandl

[issue1362] Simple mistake in http://docs.python.org/tut/node6.html

2007-10-30 Thread Georg Brandl
Georg Brandl added the comment: No, the text is correct, but the example is misleading -- I now changed it to >>> fib(0) >>> print fib(0) None which should make the difference between using and not using print clearer. -- nosy: +georg.brandl

[issue1368] Bug tracker link in about tutorial page is wrong

2007-11-01 Thread Georg Brandl
Georg Brandl added the comment: Thanks, this is already fixed in SVN and will be live after a rebuild of the 2.5 docs (which will happen with the pending release of 2.5.2...) -- nosy: +georg.brandl resolution: -> out of date status: open ->

[issue1369] Reference to Python24 path in Python 2.5 doc

2007-11-01 Thread Georg Brandl
Georg Brandl added the comment: Thanks, this is already fixed in SVN and will be live after a rebuild of the 2.5 docs (which will happen with the pending release of 2.5.2...) -- nosy: +georg.brandl resolution: -> out of date status: open ->

[issue738948] Logic Variable Thread Synchronization

2007-11-01 Thread Georg Brandl
Georg Brandl added the comment: Agreed. -- nosy: +georg.brandl resolution: -> rejected status: open -> closed Tracker <[EMAIL PROTECTED]> <http://bugs.python.

[issue1773632] Remove references to _xmlrpclib from xmlrpclib.py

2007-11-01 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> effbot nosy: +effbot _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1773632> _ ___ Python-bugs-li

[issue1516330] Module uuid: functions for retrieving MAC addres

2007-11-01 Thread Georg Brandl
Georg Brandl added the comment: Agreed, this is unusable in its current form. -- nosy: +georg.brandl resolution: -> rejected status: open -> pending _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue1651995] sgmllib _convert_ref UnicodeDecodeError exception, new in 2.5

2007-11-01 Thread Georg Brandl
Georg Brandl added the comment: Restore bug title. -- nosy: +georg.brandl title: sgmllib _convert_ref UnicodeDecodeError exception, new in 2. -> sgmllib _convert_ref UnicodeDecodeError exception, new in 2.5 _ Tracker <[EMAIL PROTECTED]&

[issue1364] os.lstat documentation error

2007-11-01 Thread Georg Brandl
Georg Brandl added the comment: os.lstat is in fact an alias for os.stat on Windows. Corrected the docs in r58745, r58746 (2.5). -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://

[issue1355] xml.dom refers to PyXML, which is no longer maintained

2007-11-01 Thread Georg Brandl
Changes by Georg Brandl: -- nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1355> __ ___ Python-bugs-list mailing list Unsubs

[issue1352] Preliminary stderr patch

2007-11-01 Thread Georg Brandl
Georg Brandl added the comment: You should be able to close it yourself now :) -- nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1364] os.lstat documentation error

2007-11-01 Thread Georg Brandl
Georg Brandl added the comment: It is, and this is also documented that way now. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1364> __ ___ Python-bugs-list

[issue1370] Doc changes left over after mega-merge from trunk

2007-11-01 Thread Georg Brandl
Georg Brandl added the comment: I saw the merge commit and that it missed Doc/, and I feared this. :D But, having caused most of this mess, I'll sort it out right now. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python

[issue1370] Doc changes left over after mega-merge from trunk

2007-11-01 Thread Georg Brandl
Georg Brandl added the comment: Okay, resolved and committed in r58752. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1370] Doc changes left over after mega-merge from trunk

2007-11-01 Thread Georg Brandl
Georg Brandl added the comment: I noted that too, should be in the repos now. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1370> __ ___ Python-bugs-list

[issue1352] Preliminary stderr patch

2007-11-02 Thread Georg Brandl
Georg Brandl added the comment: I've submitted a new bug in the meta tracker. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1352> __ ___ Python-bugs-

[issue1752184] PyHeapTypeObject fix

2007-11-02 Thread Georg Brandl
Georg Brandl added the comment: The patch's changes to typeobject.c are already in the PEP3137 branch (but without the "this is buggy" comment), the others are not. -- nosy: +georg.brandl _ Tracker <[EMAIL PROTECTED]> &l

[issue1098] decode_unicode doesn't nul-terminate

2007-11-02 Thread Georg Brandl
Georg Brandl added the comment: Guido, didn't you fix something about 0-termination in a DecodeUnicode function recently? I can't seem to find the commit now though... -- assignee: loewis -> gvanrossum nosy: +gvanrossum __ Tracker <

[issue1184] test fixes for immutable bytes change

2007-11-02 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> gvanrossum nosy: +gvanrossum __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1184> __ ___ Python-bugs-li

[issue1098] decode_unicode doesn't nul-terminate

2007-11-02 Thread Georg Brandl
Georg Brandl added the comment: Committed r58814. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1098> __

[issue1383] Backport abcoll to 2.6

2007-11-04 Thread Georg Brandl
Georg Brandl added the comment: Is this a successor or a companion to #1026? -- nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1385] hmac module violates RFC for some hash functions, e.g. sha512

2007-11-05 Thread Georg Brandl
Changes by Georg Brandl: -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1385> __ ___ Python-bugs

[issue1411] A typo in tutorial

2007-11-09 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r58921. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1408] Inconsistence in multiply list

2007-11-09 Thread Georg Brandl
Georg Brandl added the comment: I'm sorry, this is no bug. List multiplication works by referencing, there is no way to implement it differently in a straightforward way. Note that in >>> [a[:]] + [a[:]] the expression "a[:]" is evaluated twice, yielding two independent

[issue1409] new keyword-only function parameters interact badly with nested functions

2007-11-09 Thread Georg Brandl
Georg Brandl added the comment: I think you misunderstood the meaning of "accepted" in our tracker - it may mean "I confirm that this is a bug" somewhere else, here it means "patch accepted". -- nosy: +georg.brandl __ Tra

[issue1409] new keyword-only function parameters interact badly with nested functions

2007-11-09 Thread Georg Brandl
Georg Brandl added the comment: Please discuss that in the meta tracker (see the "report tracker problem" link in the sidebar). __ Tracker <[EMAIL PROTECTED]> <http://bugs.p

[issue1417] Weakref not working properly

2007-11-10 Thread Georg Brandl
Georg Brandl added the comment: Closing as invalid. -- nosy: +georg.brandl resolution: -> invalid status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1418] Python/hypot.c is never used

2007-11-10 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> loewis nosy: +loewis __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1418> __ ___ Python-bugs-list mailing li

[issue1421] python.org: outdated and false information

2007-11-11 Thread Georg Brandl
Georg Brandl added the comment: Fixed in revisions 4 and 5 of the pydotorg repository. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1420] Unicode literals in tokenize.py and tests.

2007-11-11 Thread Georg Brandl
Georg Brandl added the comment: I don't think you can have raw bytes (rb"..." etc.) literals. -- nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://b

[issue1419] ssl module version 1.10 causes TypeError when accepting connection

2007-11-11 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> janssen nosy: +janssen __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1419> __ ___ Python-bugs-li

[issue1420] Unicode literals in tokenize.py and tests.

2007-11-12 Thread Georg Brandl
Georg Brandl added the comment: Martin, Guido: I think you misunderstand the patch description: it doesn't make tokenize process bytes instead of bytes, but makes it tokenize the new b"..." literals instead of the old u"..." literals. __

[issue1421] python.org: outdated and false information

2007-11-12 Thread Georg Brandl
Georg Brandl added the comment: It used to be the tracker at http://pydotorg.python.org/, but the PythonWebsiteCreatingNewTickets Wiki page says it's disabled... __ Tracker <[EMAIL PROTECTED]> <http://bugs.python

[issue1444] utf_8_sig streamreader bug, patch, and test

2007-11-15 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> doerwalter nosy: +doerwalter __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1444> __ ___ Python-bugs-li

[issue1446] Link to call me for free

2007-11-15 Thread Georg Brandl
Georg Brandl added the comment: Shouldn't the account be closed? -- nosy: +georg.brandl __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1446> __ ___

[issue1220] popen3 website documentation inconsistency

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: Sorry, but you're confusing the os.popen* functions with the popen3.popen* functions. (That they both exist, and return the handles in different orders is a mess, but it is documented correctly.) -- nosy: +georg.brandl resolution: -> invalid stat

[issue1273] email module example email-unpack.py error

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: Thanks, this is fixed in the development docs now (r58445). -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1344] subprocess.communication doc could use clarification

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: Thanks, this is now documented (r59164). -- nosy: +georg.brandl status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue1467] error in TestResult.addError and TestResult.addFailure

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: Thanks, this is now fixed in the development docs (r59165). -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1355] xml.dom refers to PyXML, which is no longer maintained

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: I've now removed mention of PyXML from the docs (r59166). -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.

[issue1315] Bug in pstats.print_callers

2007-11-24 Thread Georg Brandl
Changes by Georg Brandl: -- resolution: -> duplicate status: open -> closed superseder: -> Exception in pstats print_callers() __ Tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue1735632] Add O_NOATIME to os module

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: Added the constant in r59172. The behavior is way too special though to warrant a change to builtin open(). -- nosy: +georg.brandl resolution: -> accepted status: open -> closed _ Tracker <[EMAIL PROTECTE

[issue1285] setp.py error "The process cannot access the file ..."

2007-11-24 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> loewis nosy: +loewis __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1285> __ ___ Python-bugs-list mailing li

[issue1282] re module needs to support bytes / memoryview well

2007-11-24 Thread Georg Brandl
Changes by Georg Brandl: -- type: rfe -> behavior __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1282> __ ___ Python-bugs-list mailing list Uns

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: Okay, this new patch takes care of test_pyclbr, test_inspect and test_weakref. test_unittest is a bit hard: previously, calling loadTestsFromName with the name of a method would create a test that runs that test case with that method being the test method. With

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: Got test_typechecks too - the test is simply not applicable anymore. Added file: http://bugs.python.org/file8801/py3k_remove_unbound_3.patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: Okay, got test_descr too -- the problem was introduced by the patch itself :) Added file: http://bugs.python.org/file8802/py3k_remove_unbound_4.patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Georg Brandl
Changes by Georg Brandl: Removed file: http://bugs.python.org/file8800/py3k_remove_unbound_2.patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1493> __ ___

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Georg Brandl
Changes by Georg Brandl: Removed file: http://bugs.python.org/file8801/py3k_remove_unbound_3.patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1493> __ ___

[issue1493] Patch to remove unbound methods

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: I think it is correct -- normally the __get__ call gets a second argument of C. __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/

[issue1391] Adds the .compact() method to bsddb db.DB objects

2007-11-24 Thread Georg Brandl
Changes by Georg Brandl: -- keywords: -rfe type: -> rfe __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1391> __ ___ Python-bugs-list mailing li

[issue1342] Crash on Windows if Python runs from a directory with umlauts

2007-11-24 Thread Georg Brandl
Changes by Georg Brandl: -- keywords: -rfe __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1342> __ ___ Python-bugs-list mailing list Unsubs

[issue1480] sqlite module is leaking lots of references

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r59180. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1479] csv module is leaking references

2007-11-24 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r59181. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1496] add str.maketrans()

2007-11-24 Thread Georg Brandl
New submission from Georg Brandl: This patch restores old behavior of str.translate() and adds the str.maketrans() static method. Docs and tests will follow if this is the right way to go. -- assignee: gvanrossum files: str-maketrans.diff messages: 57823 nosy: georg.brandl, gvanrossum

[issue1497] Patch to remove API to create new unbound methods

2007-11-25 Thread Georg Brandl
New submission from Georg Brandl: Perhaps it would be good to move the rest of classobject.c into methodobject.c after that. -- assignee: -> gvanrossum nosy: +gvanrossum __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue1117670] profiler: Bad return and Bad call errors with exceptions

2007-11-25 Thread Georg Brandl
Georg Brandl added the comment: With pleasure. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue1497] Patch to remove API to create new unbound methods

2007-11-26 Thread Georg Brandl
Georg Brandl added the comment: Note though that the "new" module was deprecated once... __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1497> __ ___ Py

[issue1496] add str.maketrans()

2007-11-27 Thread Georg Brandl
Georg Brandl added the comment: Okay, checked in as r59205. -- resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

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