[issue7962] Demo/ directory needs to be tested and pruned

2010-02-19 Thread Georg Brandl
Georg Brandl added the comment: Well, these demos are not meant to demonstrate the fastest algorithms, but to demonstrate how easy and readable simple algorithms can be written in Python. That said, if you can write better versions that are also very readable, they'll make a good add

[issue7968] __dict__ Exception using class attributes

2010-02-20 Thread Georg Brandl
Georg Brandl added the comment: > That seems a little strange to me, because if an object is instance of > a class, it should inherit all of it attributes. An instance does not "inherit" attributes of its class. Instead, when looking up an attribute for an instance, attribu

[issue8000] Bad deprecated label in documentation

2010-02-23 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r78385, thanks! -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue4199] add shorthand global and nonlocal statements

2010-02-24 Thread Georg Brandl
Georg Brandl added the comment: > I also notice that the Grammar in the PEP is more complicated: > nonlocal_stmt ::= > "nonlocal" identifier ("," identifier)* >["=" (target_list "=")+ expression_list] > | "nonloc

[issue4199] add shorthand global and nonlocal statements

2010-02-27 Thread Georg Brandl
Georg Brandl added the comment: I do think a brief discussion after the moratorium is over would be good. -- ___ Python tracker <http://bugs.python.org/issue4

[issue5341] A selection of spelling errors and typos throughout source

2010-03-07 Thread Georg Brandl
Georg Brandl added the comment: David is correct, rewrapping while editing is intrusive enough. The docs should be wrapped at 79/80 characters. The reason that most files have longer lines is that the latex to rest converter tool had a flaw in the wrapping code that I didn't notice

[issue5341] A selection of spelling errors and typos throughout source

2010-03-07 Thread Georg Brandl
Georg Brandl added the comment: > > rewrap lines when we change the text for some other reason. > Doesn’t that make harder to review the real changes when they are mixed > with rewrapping? That's true. I wouldn't do it in patches I mean someone else to review. But man

[issue8085] PyObject_GC_VarNew should be PyObject_GC_NewVar

2010-03-07 Thread Georg Brandl
Georg Brandl added the comment: Thanks, applied in r78771. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue8039] precedence rules for ternary operator

2010-03-07 Thread Georg Brandl
Georg Brandl added the comment: if-else actually was already documented, under "boolean expressions". It was merely missing from the precendence table. I've now given it its own section, to make it stand out a bit better. See r78772. -- resolution: -> fixed stat

[issue8044] Py_EnterRecursiveCall and Py_LeaveRecursiveCall are undocumented

2010-03-07 Thread Georg Brandl
Georg Brandl added the comment: Thanks! I've added documentation in r78773. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python

[issue8104] socket.recv_into doesn't support a memoryview as an argument

2010-03-10 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> pitrou nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue8104> ___ ___ Python-bugs-list mailing list Un

[issue8111] docs.python.org/download.html unhelpful.

2010-03-10 Thread Georg Brandl
Georg Brandl added the comment: Agreed. I will have a more sane set of docs that are continually rebuilt vs. docs that are frozen in place for the next minor release that happens. -- ___ Python tracker <http://bugs.python.org/issue8

[issue8111] docs.python.org/download.html unhelpful.

2010-03-12 Thread Georg Brandl
Georg Brandl added the comment: Uh oh. Definitely. -- ___ Python tracker <http://bugs.python.org/issue8111> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8111] docs.python.org/download.html unhelpful.

2010-03-12 Thread Georg Brandl
Georg Brandl added the comment: Oh, just now saw your second message. At least it's back to semi-broken now :) -- ___ Python tracker <http://bugs.python.org/i

[issue8121] Typo in cStringIO

2010-03-12 Thread Georg Brandl
Georg Brandl added the comment: That name is actually correct. cStringIO features two different types, depending on whether you call cStringIO.StringIO() with or without an argument. One is called "StringI", the other "StringO". -- nosy: +georg.brandl resolution

[issue8111] docs.python.org/download.html unhelpful.

2010-03-13 Thread Georg Brandl
Georg Brandl added the comment: Raising to "release blocker" status to get the changes that fix this and that are already in 2.6 approved by Barry. The revisions are: r78907, r78914, r78923. I'm attaching a patch with the collective diff. In short, these changes mirror th

[issue8137] Missing iso-8859-16 codec in the docs

2010-03-14 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r78952. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue8177] Incoherent error with keyword argument follow by unpacking argument lists

2010-03-21 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> benjamin.peterson nosy: +benjamin.peterson ___ Python tracker <http://bugs.python.org/issue8177> ___ ___ Python-

[issue8196] sqlit3.paramstyle reported as 'qmark'

2010-03-22 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> ghaering nosy: +ghaering ___ Python tracker <http://bugs.python.org/issue8196> ___ ___ Python-bugs-list mai

[issue8269] Missing return values for PyUnicode C/API functions

2010-04-01 Thread Georg Brandl
Georg Brandl added the comment: I'd like to add that a patch would need to modify Doc/data/refcounts.dat, not the .rst files. -- ___ Python tracker <http://bugs.python.org/i

[issue8284] urlparse incorrect parse

2010-04-01 Thread Georg Brandl
Georg Brandl added the comment: This will be a release blocker for Python 4.1, but for now I'm closing it. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python

[issue8245] email examples don't actually work (SMTP.connect is not called)

2010-04-02 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> asmodai nosy: +asmodai ___ Python tracker <http://bugs.python.org/issue8245> ___ ___ Python-bugs-list mai

[issue8261] License link for Python 2.6.5 release is broken

2010-04-02 Thread Georg Brandl
Georg Brandl added the comment: Thanks, should be fixed now. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue2768] os.fstat and other os.f* methods should use PyObject_AsFileDescriptor

2010-04-02 Thread Georg Brandl
Georg Brandl added the comment: I applied the first part of the patch in r79580. I don't see that the second part is necessary, the other functions don't have such a note. -- resolution: -> fixed status: open -> closed ___ Pytho

[issue8227] Fix C API documentation: Argument parsing

2010-04-02 Thread Georg Brandl
Georg Brandl added the comment: Looks good to me. -- assignee: georg.brandl -> haypo resolution: -> accepted ___ Python tracker <http://bugs.python.org/

[issue7696] Improve Memoryview/Buffer documentation

2010-04-02 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> pitrou nosy: +pitrou ___ Python tracker <http://bugs.python.org/issue7696> ___ ___ Python-bugs-list mai

[issue8213] Python 3 ignored PYTHONUNBUFFERED and -u

2010-04-02 Thread Georg Brandl
Georg Brandl added the comment: I've fixed the using/cmdline and manpage to describe the current behavior. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python

[issue8012] Revise generator-related Glossary entries

2010-04-02 Thread Georg Brandl
Georg Brandl added the comment: I think this patch is not correct: a "generator" really is the same as "generator function". Both generators and genexps return an iterator; I've fixed that in r79587. -- resolution: ->

[issue8267] Tutorial section on dictionary keys recommends sort instead of sorted

2010-04-02 Thread Georg Brandl
Georg Brandl added the comment: I'm not sure about this; what is the advantage? If you already have a list, calling .sort() on it is more efficient since it doesn't have to create a new list. -- ___ Python tracker <http://bu

[issue8012] Revise generator-related Glossary entries

2010-04-02 Thread Georg Brandl
Georg Brandl added the comment: Well, the object returned is "just" an iterator (which happens to be implemented by a generator-iterator). I wouldn't be so concerned about the repr() of the it. If you look at the generator PEP, number 255, it says: """Note

[issue8288] zipfile module documentation misprint

2010-04-02 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r79615 (only applies to py3k.) -- resolution: -> fixed status: open -> closed versions: +Python 3.2 -Python 2.6 ___ Python tracker <http://bugs.python.org/

[issue8288] zipfile module documentation misprint

2010-04-02 Thread Georg Brandl
Georg Brandl added the comment: In 2.x, the method is really called next(). -- ___ Python tracker <http://bugs.python.org/issue8288> ___ ___ Python-bugs-list m

[issue1086642] Compile of _socket fails on IRIX with 2.4

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

[issue1542308] Nested finally in generators don't follow PEP 342

2010-04-03 Thread Georg Brandl
Changes by Georg Brandl : -- status: open -> languishing ___ Python tracker <http://bugs.python.org/issue1542308> ___ ___ Python-bugs-list mailing list Un

[issue1518617] PEP101/102 out of date

2010-04-03 Thread Georg Brandl
Georg Brandl added the comment: PEP 101 is up to date. I don't know about 102, it should probably be withdrawn, as 101 has all the info. -- status: open -> closed ___ Python tracker <http://bugs.python.org/i

[issue1944] Documentation for PyUnicode_AsString (et al.) missing.

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

[issue7696] Improve Memoryview/Buffer documentation

2010-04-04 Thread Georg Brandl
Georg Brandl added the comment: > (I don't know why it doesn't have its own anchor, though) Because that is only a link to the real description: http://docs.python.org/dev/library/stdtypes.html#memoryview And I think even you, Mr Potrou, could infer how to add glossary entries f

[issue4683] urllib2.HTTPDigestAuthHandler fails on third hostname?

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

[issue5198] Strange DeprecationWarning behaviour in module struct

2010-04-05 Thread Georg Brandl
Georg Brandl added the comment: Both examples now give consistent behavior independent of byteorder in trunk: packing floats with "H" works, packing bytes out of range with "B" raises. Closing as "out of date". -- nosy: +georg.brandl resolution: -> o

[issue7721] Code in xrange documentation does not work

2010-04-05 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in release26-maint r79796. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue7490] IGNORE_EXCEPTION_DETAIL should ignore the module name

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

[issue8320] docs on socket.recv_into doesn't mention the return value

2010-04-06 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r79822. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue7947] Documentation of math.pow, math.hypot, and complex.__abs__

2010-04-06 Thread Georg Brandl
Georg Brandl added the comment: Looks good to me. Is it intentional that the paragraph about signaling NaNs is gone completely? And is it intentional that you changed behavior -> behaviour? :) -- ___ Python tracker <http://bugs.pyth

[issue7947] Documentation of math.pow, math.hypot, and complex.__abs__

2010-04-06 Thread Georg Brandl
Georg Brandl added the comment: You don't need to :) -- ___ Python tracker <http://bugs.python.org/issue7947> ___ ___ Python-bugs-list mailing list Unsubsc

[issue7947] Documentation of math.pow, math.hypot, and complex.__abs__

2010-04-06 Thread Georg Brandl
Georg Brandl added the comment: You didn't give me the chance to review the new sentences! Now I have to tell you that there is now "NaN", "*NaN*" and "nan" which looks inconsistent... :) -- ___ Python tracker

[issue8341] sphinx bug?

2010-04-07 Thread Georg Brandl
Georg Brandl added the comment: It was a bug in the source file. Fixed in r79901. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue8336] PyObject_CallObject - Not "reference-count-neutral"

2010-04-08 Thread Georg Brandl
Georg Brandl added the comment: I don't think this needs to be kept open. -- resolution: -> works for me status: open -> closed ___ Python tracker <http://bugs.python

[issue8360] doc: unittest.skipTest method added in 2.7

2010-04-10 Thread Georg Brandl
New submission from Georg Brandl : Thanks, fixed in r79923. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue8346] Old Version Name in Interactive Mode

2010-04-10 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r79924. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue8359] % formating - TypeError: not all arguments converted during string formatting

2010-04-10 Thread Georg Brandl
Georg Brandl added the comment: I think we won't add new features to %-formatting, when it is considered old-style anyway. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python

[issue8355] diff.py produce unified format by default

2010-04-13 Thread Georg Brandl
Georg Brandl added the comment: Tentatively closing as rejected. There were quite a lot of -0 or -1, and you can include one from me as well. -- nosy: +georg.brandl resolution: -> rejected status: open -> pending ___ Python tracker

[issue5341] A selection of spelling errors and typos throughout source

2010-04-14 Thread Georg Brandl
Georg Brandl added the comment: OK, fixed the two typos in r80067, r80068. Please open a new issue for further fixes, this one gets a bit confusing :) -- ___ Python tracker <http://bugs.python.org/issue5

[issue8399] Document os.open

2010-04-14 Thread Georg Brandl
Georg Brandl added the comment: Since there is no distinction between text and binary mode on Unix, you shouldn't claim the behavior is not consistent - you get text mode. You need O_BINARY on Windows to get binary mode. O_BINARY is already documented; I've added a better link

[issue8399] Document os.open

2010-04-14 Thread Georg Brandl
Georg Brandl added the comment: I've added a paragraph about O_BINARY in r80080. -- status: open -> closed ___ Python tracker <http://bugs.python.or

[issue5250] Document __instancecheck__ and __subclasscheck__

2010-04-14 Thread Georg Brandl
Georg Brandl added the comment: Committed a similar patch in r80081. Thanks very much! -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue8370] change module "builtins" to "__builtin__" in __import__ documentation

2010-04-14 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r80082. The builtins rename happened in 3.0; there are no "version added" or "version changed" marks for 3.0 in the docs, since we regard it as a "clean start". -- resolution: -

[issue5250] Document __instancecheck__ and __subclasscheck__

2010-04-14 Thread Georg Brandl
Georg Brandl added the comment: Fixed the missing verb in r80084. I don't think the new special methods need to be mention in isinstance() or issubclass() docs; they are very rarely needed, and other builtins don't mention their special methods either (e.g. abs(), complex(),

[issue8401] Strange behavior of bytearray slice assignment

2010-04-18 Thread Georg Brandl
Georg Brandl added the comment: Python is not (e.g.) Haskell; Python strings are not lists whose contents happen to be characters. Allowing an empty string here is a step backwards in the direction of "why not allow any string whose contents have an unambiguous meaning as bytes"

[issue8273] move generally useful test_support functions into the unittest package

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

[issue8487] os.mknod() fails on NFS mounted directories

2010-04-21 Thread Georg Brandl
Georg Brandl added the comment: Closing this, as it is not an issue with Python. -- nosy: +georg.brandl resolution: -> wont fix status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue8478] tokenize.untokenize first token missing failure case

2010-04-21 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> georg.brandl nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue8478> ___ ___ Python-bugs-list mai

[issue8465] Backreferences vs. escapes: a silent failure solved

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

[issue7507] pipes.quote does not correctly escape !

2010-04-24 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r80433. -- assignee: r.david.murray -> georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.o

[issue3341] "Suggest a change" link

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

[issue2823] "Report bug" links

2010-04-24 Thread Georg Brandl
Georg Brandl added the comment: These links just go to the same page as the link on the front page. It's not a link to the tracker, or a form to report a bug in the documented module. -- status: open -> closed ___ Python tracke

[issue8517] Apple Style Guide link is broken in the "Documenting Python" chapter

2010-04-24 Thread Georg Brandl
Georg Brandl added the comment: This was already fixed in r80150, but not backported; I've done so now in r80438 ff. -- resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python

[issue3341] "Suggest a change" link

2010-04-24 Thread Georg Brandl
Georg Brandl added the comment: I'm closing this again; I can see that nobody will implement this for Python if it's not available in Sphinx, and also I don't think it would be a good idea to do so. -- ___ Python tracker <http

[issue2823] "Report bug" links

2010-04-24 Thread Georg Brandl
Changes by Georg Brandl : -- resolution: rejected -> fixed ___ Python tracker <http://bugs.python.org/issue2823> ___ ___ Python-bugs-list mailing list Unsubscri

[issue2823] "Report bug" links

2010-04-24 Thread Georg Brandl
Georg Brandl added the comment: As you wish. -- superseder: -> "Suggest a change" link ___ Python tracker <http://bugs.python.org/issue2823> ___ _

[issue3341] "Suggest a change" link

2010-04-24 Thread Georg Brandl
Georg Brandl added the comment: I haven't changed my mind. The "it would not be a good idea to do so" refers to implementing this for Python exclusively. Of course, if you volunteer to do so, I won't stop you :) Otherwise, please trust my judgement that this issue wi

[issue8481] doc: ctypes no need to explicitly allocate writable memory with Structure

2010-04-24 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> theller nosy: +theller ___ Python tracker <http://bugs.python.org/issue8481> ___ ___ Python-bugs-list mai

[issue8518] small typo in http://docs.python.org/howto/doanddont.html

2010-04-24 Thread Georg Brandl
Georg Brandl added the comment: The text is correct as-is; the meaning is "The example that is shown above is better written like this:". -- resolution: -> works for me status: open -> closed ___ Python tracker <http://bugs.p

[issue8519] [patch] doc: termios and ioctl reference links

2010-04-24 Thread Georg Brandl
Georg Brandl added the comment: The POSIX reference is OK; I'm hesitant to put a Linux-specific reference in though. Also, ioctls are not limited to tty operations. IMO a :manpage:`ioctl(2)` would suffice. -- ___ Python tracker

[issue8519] [patch] doc: termios and ioctl reference links

2010-04-24 Thread Georg Brandl
Georg Brandl added the comment: ioctl(2) usually has "see also" entries that list the available ioctls, such as ioctl_list on linux. If you want to link to examples like getting console size, the manpage isn't very helpful either, since you have to figure out how exactl

[issue8518] small typo in http://docs.python.org/howto/doanddont.html

2010-04-24 Thread Georg Brandl
Georg Brandl added the comment: I'll let an English native speaker decide how to best express this. -- assignee: georg.brandl -> r.david.murray nosy: +r.david.murray ___ Python tracker <http://bugs.python.or

[issue8520] test doc issue

2010-04-24 Thread Georg Brandl
New submission from Georg Brandl : Testing delivery of tracker messages, and autonosy for docs issues. -- assignee: d...@python components: Documentation messages: 104102 nosy: d...@python, georg.brandl severity: normal status: open title: test doc issue versions: Python 2.7

[issue8520] test doc issue

2010-04-24 Thread Georg Brandl
Georg Brandl added the comment: OK, works. -- assignee: d...@python -> nosy: -d...@python resolution: -> invalid status: open -> closed ___ Python tracker <http://bugs.python.o

[issue8525] Small enhancement to help()

2010-04-24 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> georg.brandl nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/issue8525> ___ ___ Python-bugs-list mai

[issue8528] typo in argparse documentation

2010-04-25 Thread Georg Brandl
Georg Brandl added the comment: Thanks, fixed in r80460. -- assignee: d...@python -> nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker <http://bugs.python.o

[issue8522] enhacement proposal in howto/doanddont

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

[issue8532] Refinements to Python 3 New GIL

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

[issue8545] i didn't get rqrd output for programme in python?(plz... help)

2010-04-26 Thread Georg Brandl
Georg Brandl added the comment: Please use python-h...@python.org or comp.lang.python for usage questions, not the tracker. -- nosy: +georg.brandl resolution: -> invalid status: open -> closed ___ Python tracker <http://bugs.python.org/

[issue8128] String interpolation with unicode subclass fails to call __str__

2010-04-27 Thread Georg Brandl
Georg Brandl added the comment: In Python 2.x, __unicode__ is called instead of __str__. Whether that's "correct" behavior, I'm not sure, but at least it is consistent with "{}".format(K()). In Python 3.x, __unicode__ doesn't exist and __str__ isn't

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

2010-04-27 Thread Georg Brandl
Georg Brandl added the comment: So for staticmethods and classmethods, valname doesn't need to be reassigned? -- nosy: +georg.brandl ___ Python tracker <http://bugs.python.org/i

[issue8638] Remove suggestion for name mangling from the tutorial

2010-05-08 Thread Georg Brandl
Georg Brandl added the comment: The section titled "Private Variables" was updated fairly recently to be more in line with the Python philosophy. In its current form (which I verified to be present at e.g. http://docs.python.org/tutorial/classes#private-variables) I don't th

[issue8642] json.loads description

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

[issue1528] Add os.fchmod

2007-11-30 Thread Georg Brandl
Georg Brandl added the comment: Attached is a patch against trunk that adds fchmod() and fchown() calls where available. I hope I did the configure magic correctly. -- nosy: +georg.brandl Added file: http://bugs.python.org/file8836/fchmod-fchown.diff

[issue467924] Improve the ZipFile Interface

2007-11-30 Thread Georg Brandl
Georg Brandl added the comment: Alan's patch has since been committed. Is there any more work on this item? -- nosy: +georg.brandl Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue469773] Write 'Using Python on Platform X' documents

2007-11-30 Thread Georg Brandl
Georg Brandl added the comment: This will hopefully be done in GHOP. -- assignee: -> georg.brandl status: open -> pending Tracker <[EMAIL PROTECTED]> <http://bugs.python.

[issue1535] Rename __builtin__ to builtins

2007-12-01 Thread Georg Brandl
Changes by Georg Brandl: Removed file: http://bugs.python.org/file8842/builtins.diff __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1535> __ ___ Python-bugs-

[issue1338] pickling bytes?

2007-12-01 Thread Georg Brandl
Georg Brandl added the comment: I added the Developer role to your roundup account, so you can now assign bugs to yourself. :) -- assignee: -> alexandre.vassalotti __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue939395] cPickle.Pickler: in list mode, no way to set protocol

2007-12-01 Thread Georg Brandl
Changes by Georg Brandl: -- resolution: -> wont fix status: open -> closed Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue939395> __

[issue1535] Rename __builtin__ to builtins

2007-12-02 Thread Georg Brandl
Georg Brandl added the comment: Committed r59268. -- status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1535> __ ___ Python-bugs-li

[issue1543] MSI installer needs to be updated to install x86 and x64 versions of Python on Vista 64 bit

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

[issue1245] Document PySys_* API functions

2007-12-02 Thread Georg Brandl
Georg Brandl added the comment: Fixed as of r59281, thanks to GHOP student Charlie Shepherd. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1719933] No docs for PyEval_EvalCode and related functions

2007-12-02 Thread Georg Brandl
Georg Brandl added the comment: Fixed as of r59262. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed _ Tracker <[EMAIL PROTECTED]> <http://bugs.python.o

[issue1520] 'without make' documentation build anomaly

2007-12-02 Thread Georg Brandl
Georg Brandl added the comment: Really great that you're doing this! Many thanks! (Yes, I must admit that I was sloppy there...) __ Tracker <[EMAIL PROTECTED]> <http://bugs.python

[issue1548] Tiny typo in doc\using\cmdline.rst

2007-12-03 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r59299. -- resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1548> __

[issue1520] 'without make' documentation build anomaly

2007-12-03 Thread Georg Brandl
Georg Brandl added the comment: I fixed the markup problem now, it was a missing escape filter in the template. Well spotted! I also applied the patch in r59309, so this should be fixed now. Many thanks! __ Tracker <[EMAIL PROTECTED]> <http://bugs.p

[issue1520] 'without make' documentation build anomaly

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

<    14   15   16   17   18   19   20   21   22   23   >