[issue16932] urlparse fails at parsing "www.python.org:80/"

2013-01-11 Thread Sandro Tosi
Sandro Tosi added the comment: The documentation reports this example: >>> urlparse('www.cwi.nl:80/%7Eguido/Python.html') ParseResult(scheme='', netloc='', path='www.cwi.nl:80/%7Eguido/Python.html', params='', query=

[issue16932] urlparse fails at parsing "www.python.org:80/"

2013-01-11 Thread Sandro Tosi
Sandro Tosi added the comment: Adding Senthil as per expert list -- nosy: +orsenthil ___ Python tracker <http://bugs.python.org/issue16932> ___ ___ Python-bug

[issue16932] urlparse fails at parsing "www.python.org:80/"

2013-01-11 Thread Sandro Tosi
New submission from Sandro Tosi: Hello, as reported at http://mail.python.org/pipermail/docs/2013-January/012375.html urlparse fails to parse URLs without a schema and with a url path, as opposed to what's documented at http://docs.python.org/2/library/urlparse.html?highlight=url

[issue16813] use paths relative to CPython root in documentation building instructions

2012-12-29 Thread Sandro Tosi
Sandro Tosi added the comment: > Out of curiosity, does anyone know if the following works on all or most > systems? > > $ open _build/html/index.html it doesn't work on my Debian system: $ open _build/html/index.html Couldn't get a file descriptor referring to the cons

[issue16814] use --directory option of make

2012-12-29 Thread Sandro Tosi
Sandro Tosi added the comment: i'd use make -C Doc html much more compact and what you would usually find on the internet for "cd into the dir and run the html target in it" -- nosy: +sandro.tosi ___ Python tracker <http

[issue16805] when building docs on Debian 7 --> ERROR: Error in "note" directive

2012-12-29 Thread Sandro Tosi
Sandro Tosi added the comment: On Sat, Dec 29, 2012 at 4:07 PM, Tshepang Lekhonkhobe wrote: >> no-one has done the work of testing, preparation and migration: do you >> volunteer? :) > > What needs doing exactly? I would volunteer if guided. I normally (you always can

[issue16805] when building docs on Debian 7 --> ERROR: Error in "note" directive

2012-12-29 Thread Sandro Tosi
Sandro Tosi added the comment: On Sat, Dec 29, 2012 at 4:33 AM, Tshepang Lekhonkhobe wrote: > It is my preference to be able to build all of CPython with the > already-installed distro packages, instead of pulling in foreign ones. IMO, I think with a project as bit as CPython, you should

[issue16805] when building docs on Debian 7 --> ERROR: Error in "note" directive

2012-12-28 Thread Sandro Tosi
Sandro Tosi added the comment: Hello Tshepang, the documentation is not compatible with Sphinx versions different than the one the Makefile will download (in this case it's 1.0.7 for all active branches). I'd suggest to build the doc with just $ make -C Doc html and it will fetch

[issue14468] Update cloning guidelines in devguide

2012-08-20 Thread Sandro Tosi
Sandro Tosi added the comment: I think the aim of that part of the devguide is to give one clear, simple, working way to operate on different branches at the same time. Additional workflows can be presented, but probably in another place (like the FAQ indeed). What others thing about this

[issue12415] Missing: How to checkout the Doc sources

2012-08-20 Thread Sandro Tosi
Sandro Tosi added the comment: Éric: I've just committed your patch, with also the latest changes. Philip: In order to be consistent with the way the documentation is compiled on the Python platform, the svn checkout must be used: else if you refer to the upstream website, a contributo

[issue14468] Update cloning guidelines in devguide

2012-08-20 Thread Sandro Tosi
Sandro Tosi added the comment: Hi Ezio, thanks for the review: how about this new version of the patch? I've left the more "verbose" version in the 3.2 example, while used the more compact way for the 2.7 . Re first committing to 2.7 then 3.2 and then merge, that would work f

[issue13799] Base 16 should be hexadecimal in Unicode HOWTO

2012-08-20 Thread Sandro Tosi
Sandro Tosi added the comment: I tend to agree with Terry that this report can be closed: base 16 is quite known and it's high likely that if you know what hexadecimal is, you also aware of the concept of "base X" and viceversa. If no-one objects, I&

[issue15677] Gzip/zlib allows for compression level=0

2012-08-15 Thread Sandro Tosi
New submission from Sandro Tosi: As reported at http://mail.python.org/pipermail/docs/2012-August/009837.html gzip/zlib allows for a compression level=0 (that's basically no compression) so the documentation should mention that possibility too. -- assignee: docs@python compo

[issue15656] "Extending Python with C" page needs update for 3.x

2012-08-15 Thread Sandro Tosi
Sandro Tosi added the comment: It's fixed in default too: http://hg.python.org/cpython/rev/f46b4b7b817c It was not shown because the commit message misses the issue reference. -- ___ Python tracker <http://bugs.python.org/is

[issue15657] Error in Python 3 docs for PyMethodDef

2012-08-14 Thread Sandro Tosi
New submission from Sandro Tosi: Hello, it has been reported at http://mail.python.org/pipermail/docs/2012-April/008215.html but given it raises some question whether it's a bug in the doc or in the code, i'd rather report the issue here and hear what other think: >>>

[issue15656] "Extending Python with C" page needs update for 3.x

2012-08-14 Thread Sandro Tosi
New submission from Sandro Tosi: Hello, this has been reported at http://mail.python.org/pipermail/docs/2012-July/009223.html but since I have no experience to judge if it's correct or not, i'll just report it: >>> I've recenty started to try using C code in python us

[issue15060] docs: socket typo

2012-06-13 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks! -- nosy: +sandro.tosi resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 2.7, Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.or

[issue15014] smtplib: allow to choose auth method on login()

2012-06-06 Thread Sandro Tosi
New submission from Sandro Tosi : Hello, I'm writing some tests from an MTA, and so I'm using smtplib. Sadly the login() method doesn't allow to choose the auth method to use (but it's selected from a static list compared with what's advertized from the MTA) while

[issue15013] smtplib: add low-level APIs to doc?

2012-06-06 Thread Sandro Tosi
New submission from Sandro Tosi : In the smtplib doc I read: Low-level methods corresponding to the standard SMTP/ESMTP commands HELP, RSET, NOOP, MAIL, RCPT, and DATA are also supported. Normally these do not need to be called directly, so they are not documented here. For details, consult

[issue14926] random.seed docstring needs edit of "*a *is"

2012-06-02 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks Christopher! -- resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: -Python 2.7 ___ Python tracker <http://bugs.python.or

[issue14814] Implement PEP 3144 (the ipaddress module)

2012-06-02 Thread Sandro Tosi
Sandro Tosi added the comment: and the patch... -- Added file: http://bugs.python.org/file25800/ipaddress_module_doc.diff ___ Python tracker <http://bugs.python.org/issue14

[issue14814] Implement PEP 3144 (the ipaddress module)

2012-06-02 Thread Sandro Tosi
Sandro Tosi added the comment: Attached is a draft of the module documentation. I didn't commit yet cause we might want to rework it deeply. Else we can just commit the patch and let the comments coming as additional diffs. -- stage: needs patch -> patc

[issue14968] Section "Inplace Operators" of :mod:`operator` should be a subsection

2012-06-01 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks Lars for the patch! Éric, why did you add 2.7 version? AFAISee 2.7 doesn't have the "Inplace Operators" section. -- ___ Python tracker <http://bugs.pyt

[issue14814] Implement PEP 3144 (the ipaddress module)

2012-05-23 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks Hynek: comments committed -- ___ Python tracker <http://bugs.python.org/issue14814> ___ ___ Python-bugs-list mailin

[issue14814] Implement PEP 3144 (the ipaddress module)

2012-05-22 Thread Sandro Tosi
Sandro Tosi added the comment: Thank Nick for pointing to Terry's review! I'm attaching here a patch addressing the points Terry highlighed. probably we should review this patch before moving forward with the API doc? -- Added file: http://bugs.python.org

[issue14814] Implement PEP 3144 (the ipaddress module)

2012-05-20 Thread Sandro Tosi
Sandro Tosi added the comment: I'm attaching a very preliminary draft of the howto, any comment is welcome. Of course, it misses several references to the API doc; I'll see if I can beat Georg and post a preliminary version of that too :) -- keywords: +patch nosy: +sandro.

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

2012-05-20 Thread Sandro Tosi
Changes by Sandro Tosi : -- nosy: +sandro.tosi ___ Python tracker <http://bugs.python.org/issue12947> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue14865] #doctest: directives removed from doctest chapter examples

2012-05-20 Thread Sandro Tosi
Sandro Tosi added the comment: Hi Terry, the same problem recently came up on docs@ and digging into it, it turned out that sphinx is currently ignoring doctest directives[1], but that it was fixed in sphinx 1.1[2]. [1] https://bitbucket.org/birkenfeld/sphinx/issue/169/strip-doctest

[issue14793] broken grammar in Built-in Types doc

2012-05-14 Thread Sandro Tosi
Sandro Tosi added the comment: I think that something on the line "Hey, it looks like this phrase misses some words, and I've just fixed it" would have been nicer - IMO. -- ___ Python tracker <http://bugs.pyt

[issue14793] broken grammar in Built-in Types doc

2012-05-13 Thread Sandro Tosi
Sandro Tosi added the comment: Committed, thanks for the patch. For next times, please invest even a small amount of time describing why you opened the issue and what the patch fixes: it's definitely nicer not having to infer it from the diff. -- nosy: +sandro.tosi resol

[issue14187] add "function annotation" entry to Glossary

2012-05-12 Thread Sandro Tosi
Sandro Tosi added the comment: I agree with Raymond that last paragraph should be removed; +1 for the remaining part -- nosy: +sandro.tosi ___ Python tracker <http://bugs.python.org/issue14

[issue12298] Sphinx glitch in library/functions

2012-05-07 Thread Sandro Tosi
Sandro Tosi added the comment: Oh sorry Éric, I completely oversaw there was an issue associated with the cset - i'll pay more attention next time! -- ___ Python tracker <http://bugs.python.org/is

[issue14468] Update cloning guidelines in devguide

2012-05-05 Thread Sandro Tosi
Sandro Tosi added the comment: Here's the proposed patch. I'm sorry but probably 'hg diff' went too wild, and since I moved the "Using several working copies" as the first sub-paragraph of "Forward-Porting" it seems it got confused, so the diff is not

[issue14468] Update cloning guidelines in devguide

2012-05-01 Thread Sandro Tosi
Sandro Tosi added the comment: +1 It is important to note that if you have a 'cpython' as a clone (which pulls and pushed to hg.python.org) and from it you clone '2.7' and '3.2' (as I think it's the most common setup) you first have to pull from cpython an

[issue14691] a code example not highlighted in http://docs.python.org/dev/library/stdtypes.html#memoryview

2012-04-29 Thread Sandro Tosi
Sandro Tosi added the comment: It's seems like a deja-vu: I thought I saw this problem once, and was already fixed - bah, it was tricky (traceback needs to be indented for the code to be highlighted), that's why I remember it -- nosy: +sandro.tosi resolution: ->

[issue14676] DeprecationWarning missing in default warning filters documentation

2012-04-28 Thread Sandro Tosi
Sandro Tosi added the comment: Peter: thanks for the patch! -- nosy: +sandro.tosi resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue14448] Mention pytz in datetime's docs

2012-04-24 Thread Sandro Tosi
Sandro Tosi added the comment: I've reworded a bit the patch: thanks for it, Andrew -- nosy: +sandro.tosi resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.pyth

[issue14554] test module: correction

2012-04-24 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks for the patch, Tshepang! -- nosy: +sandro.tosi resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue13478] No documentation for timeit.default_timer

2012-04-24 Thread Sandro Tosi
Changes by Sandro Tosi : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue13587] Correcting the typos error in Doc/howto/urllib2.rst

2012-04-24 Thread Sandro Tosi
Sandro Tosi added the comment: Aaron: thanks for the patch! -- nosy: +sandro.tosi resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue13934] sqlite3 test typo

2012-04-24 Thread Sandro Tosi
Sandro Tosi added the comment: poq, would you like to also prepare a patch for the documentation with what Thomas suggested? I'd be happy to review when ready -- nosy: +sandro.tosi ___ Python tracker <http://bugs.python.org/is

[issue14650] 1-character typo in shutil docstring

2012-04-23 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks for your contribution! -- nosy: +sandro.tosi resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue14641] Minor fixes in sockets.rst

2012-04-23 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks for your contribution! -- nosy: +sandro.tosi resolution: -> fixed stage: -> committed/rejected status: open -> closed versions: +Python 3.2 ___ Python tracker <http://bugs.python.or

[issue14502] Document better what happens on releasing an unacquired lock

2012-04-05 Thread Sandro Tosi
Changes by Sandro Tosi : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue14502] Document better what happens on releasing an unacquired lock

2012-04-05 Thread Sandro Tosi
Sandro Tosi added the comment: On Thu, Apr 5, 2012 at 09:06, Georg Brandl wrote: > I agree: if we know that a ThreadError will always be raised in this > instance, we should document it as such. I've already prepared a small patch for that (every supported release has a differen

[issue2636] Adding a new regex module (compatible with re)

2012-04-03 Thread Sandro Tosi
Sandro Tosi added the comment: I've just uploaded regex into Debian: this will hopefully gives some more eyes looking at the module and reporting some feedbacks. -- nosy: +sandro.tosi ___ Python tracker <http://bugs.python.org/i

[issue14316] Broken link in grammar.rst

2012-03-31 Thread Sandro Tosi
Changes by Sandro Tosi : -- nosy: +sandro.tosi resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue14410] argparse typo

2012-03-26 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks for your patch: committed! -- nosy: +sandro.tosi resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue14218] include rendered output in addition to markup

2012-03-08 Thread Sandro Tosi
Sandro Tosi added the comment: eheh yeah it seems so :) What I think Tshepang wants is this: - the devguide contains the description of how to document python - that documentation is about a set of ReST coding commands that generate the desired output - currently the devguide reports only the

[issue14219] start the Class tutorial in a more gentle manner

2012-03-07 Thread Sandro Tosi
Sandro Tosi added the comment: see msg155067 -- nosy: +sandro.tosi versions: -Python 2.6, Python 3.1 ___ Python tracker <http://bugs.python.org/issue14

[issue14218] include rendered output in addition to markup

2012-03-07 Thread Sandro Tosi
Sandro Tosi added the comment: additionally, devguide has no version associated with it. -- versions: -Python 2.7, Python 3.2, Python 3.3 ___ Python tracker <http://bugs.python.org/issue14

[issue14218] include rendered output in addition to markup

2012-03-07 Thread Sandro Tosi
Sandro Tosi added the comment: 3.1 and 2.6 as in security fix only: please don't add those versions for non-sec issue -- nosy: +sandro.tosi versions: -Python 2.6, Python 3.1 ___ Python tracker <http://bugs.python.org/is

[issue2403] Add figleaf coverage metrics

2012-03-05 Thread Sandro Tosi
Sandro Tosi added the comment: The devguide reports a long section about code convering cpython: http://docs.python.org/devguide/coverage.html . It uses Ned's coverege.py and has a lot of details about how to use it and how to generate nice reports out of it. do we need an internal too

[issue13999] Queue references in multiprocessing doc points to Queue module and not to self

2012-02-25 Thread Sandro Tosi
Changes by Sandro Tosi : -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue13605] document argparse's nargs=REMAINDER

2012-02-19 Thread Sandro Tosi
Sandro Tosi added the comment: On Mon, Feb 20, 2012 at 01:52, Éric Araujo wrote: > I’m not entirely sure they are needed (Python code blocks seem to be > autodetected and show up colorized too), but I did it for consistency (and to > make my editor detect them). Yeah, I refrain

[issue14050] Tutorial, list.sort() and items comparability

2012-02-18 Thread Sandro Tosi
Changes by Sandro Tosi : Added file: http://bugs.python.org/file24558/list_sort-py32.diff ___ Python tracker <http://bugs.python.org/issue14050> ___ ___ Python-bugs-list m

[issue14050] Tutorial, list.sort() and items comparability

2012-02-18 Thread Sandro Tosi
New submission from Sandro Tosi : I'm providing patches for what reported at http://mail.python.org/pipermail/docs/2012-February/007481.html . I'm not sure on wording or even if we want them in the tutorial section, but I think it would be nice to have it documented n

[issue11836] multiprocessing.queues.SimpleQueue is undocumented

2012-02-15 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks for all you inputs! -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.python.or

[issue11836] multiprocessing.queues.SimpleQueue is undocumented

2012-02-12 Thread Sandro Tosi
Sandro Tosi added the comment: >> OK, so if I got it correctly, I should document >> multiprocessing.queue.SimpleQueue in 2.7 and 3.1 [...] > > s/3.1/3.2/ yeah, just a typo :) -- ___ Python tracker <http://bugs.

[issue11836] multiprocessing.queues.SimpleQueue is undocumented

2012-02-12 Thread Sandro Tosi
Sandro Tosi added the comment: It's the way all the subclasses are imported into the main module that got me in fault, I think. OK, so if I got it correctly, I should document multiprocessing.queue.SimpleQueue in 2.7 and 3.1 and multiprocessing.SimpleQueue in 3.3 also adding the hu

[issue13999] Queue references in multiprocessing doc points to Queue module and not to self

2012-02-12 Thread Sandro Tosi
New submission from Sandro Tosi : At the subject says, several references to Queue are linking to Queue module and not to multiprocessing. -- assignee: docs@python components: Documentation messages: 153218 nosy: docs@python, sandro.tosi priority: normal severity: normal stage: needs

[issue11836] multiprocessing.queues.SimpleQueue is undocumented

2012-02-12 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks Eli for the heads-up, I had missed Antoine's comment! Antoine, I'm probably missing something, but SimpleQueue is present in 2.7 and 3.2 too, so why not mention it in the doc for those ve

[issue13939] excessive cpu usage

2012-02-04 Thread Sandro Tosi
Changes by Sandro Tosi : -- components: -None versions: -Python 2.7 ___ Python tracker <http://bugs.python.org/issue13939> ___ ___ Python-bugs-list mailin

[issue13939] excessive cpu usage

2012-02-04 Thread Sandro Tosi
Sandro Tosi added the comment: Hello, i'm sorry but this is not the right place for this report. Please refer to ubuntu or gnome user support forum for help. Sandro -- nosy: +sandro.tosi resolution: -> invalid stage: -> committed/rejected status: ope

[issue13868] Add hyphen doc fix

2012-02-01 Thread Sandro Tosi
Sandro Tosi added the comment: On Wed, Feb 1, 2012 at 15:42, Boštjan Mejak wrote: > Seriously, how old are you two clowns? I think it's enough: FTR I'm +1 on removing Retro tracker account, effective immediately (if any ad

[issue13868] Add hyphen doc fix

2012-01-30 Thread Sandro Tosi
Sandro Tosi added the comment: On Mon, Jan 30, 2012 at 15:08, Boštjan Mejak wrote: > Can you fix all occurences of "floating point" (when in a role of > an adjective) to "floating-point" throughout Python docs? What I was asking is if *you* (since you care about

[issue13868] Add hyphen doc fix

2012-01-29 Thread Sandro Tosi
Sandro Tosi added the comment: Wow.. do you really expect any positive outcome from you reply style? I'll pretend I didn't read your reply and let me rephrase my question like this: there are several occurrences of 'floating point' in python doc, are you going to fix a

[issue13868] Add hyphen doc fix

2012-01-27 Thread Sandro Tosi
Sandro Tosi added the comment: There are a lot more occurrences of 'floating point' in our doc: are you going to fix them too? -- nosy: +sandro.tosi ___ Python tracker <http://bugs.python.o

[issue13835] whatsnew/3.3 misspelling/mislink

2012-01-22 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks July, I've just committed your patches! -- nosy: +sandro.tosi resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.pyth

[issue13605] document argparse's nargs=REMAINDER

2012-01-19 Thread Sandro Tosi
Changes by Sandro Tosi : -- nosy: +sandro.tosi resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed versions: +Python 2.7, Python 3.2 ___ Python tracker <http://bugs.python.or

[issue11551] test_dummy_thread.py test coverage improvement

2012-01-19 Thread Sandro Tosi
Sandro Tosi added the comment: Hi Denver, do you have the time to address the review on rietveld and propose a new patch? -- ___ Python tracker <http://bugs.python.org/issue11

[issue13478] No documentation for timeit.default_timer

2012-01-19 Thread Sandro Tosi
Changes by Sandro Tosi : Added file: http://bugs.python.org/file24277/issue13478-py32.patch ___ Python tracker <http://bugs.python.org/issue13478> ___ ___ Python-bug

[issue13478] No documentation for timeit.default_timer

2012-01-19 Thread Sandro Tosi
Sandro Tosi added the comment: I propose these 2 patches: I'm not exactly proud of - 'in a platform specific manner' in the first hunk - the second hunk I know that there should be a better way to express it, but since I can't get to it I'd just ask for suggestion

[issue13826] Having a shlex example in the subprocess.Popen docs is confusing

2012-01-19 Thread Sandro Tosi
Sandro Tosi added the comment: Maybe we can add a very small example before the whole note to show just how to use Popen in simple situation, and so the shlex part below will add more details for more advanced cases. -- nosy: +sandro.tosi versions: -Python 2.6, Python 3.1

[issue11948] Tutorial/Modules - small fix to better clarify the modules search path

2012-01-19 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks Terry for the ping, I've just committed it - thanks again to everyone for the help/suggestions. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___

[issue13810] refer people to Doc/Makefile when not using 'make' to build main documentation

2012-01-18 Thread Sandro Tosi
Sandro Tosi added the comment: The outdated command is addressed in issue#12415, and I think it's better to provide a precise command in devguide, so that if you don't use make you don't even need to understand where to grab the information to checkout third-party tools. Ad

[issue12415] Missing: How to checkout the Doc sources

2012-01-16 Thread Sandro Tosi
Sandro Tosi added the comment: that looks ok to me. -- ___ Python tracker <http://bugs.python.org/issue12415> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13801] The Python 3 Docs don't highlight nonlocal

2012-01-16 Thread Sandro Tosi
Changes by Sandro Tosi : -- nosy: +sandro.tosi ___ Python tracker <http://bugs.python.org/issue13801> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12409] Moving "Documenting Python" to Devguide

2012-01-16 Thread Sandro Tosi
Sandro Tosi added the comment: Éric, thanks for spotting it: removed. -- ___ Python tracker <http://bugs.python.org/issue12409> ___ ___ Python-bugs-list mailin

[issue12409] Moving "Documenting Python" to Devguide

2012-01-14 Thread Sandro Tosi
Sandro Tosi added the comment: "Documenting Python" has been: - moved to devguide; http://hg.python.org/devguide/rev/5d4a90e568ed - removed from 2.7, 3.2 and default; http://hg.python.org/cpython/rev/8975f7d0fbf7 http://hg.python.org/cpython/rev/70c46599fb0e http://hg.

[issue12409] Moving "Documenting Python" to Devguide

2012-01-14 Thread Sandro Tosi
Sandro Tosi added the comment: On Sat, Jan 14, 2012 at 04:36, Éric Araujo wrote: > > Éric Araujo added the comment: > > I just replied to your python-dev email.  I think you can update 2.7 to use > Sphinx 1.0 as soon as you’re down to a handful of warnings. thanks! I've

[issue13728] Description of -m and -c cli options wrong?

2012-01-13 Thread Sandro Tosi
Sandro Tosi added the comment: Ah indeed, I could have looked at sys.path doc myself after all.. sorry for the noise. -- resolution: -> invalid stage: needs patch -> committed/rejected status: open -> closed ___ Python track

[issue12409] Moving "Documenting Python" to Devguide

2012-01-13 Thread Sandro Tosi
Sandro Tosi added the comment: Hi Éric, thanks for the review. On Fri, Jan 13, 2012 at 18:13, Éric Araujo wrote: > > Éric Araujo added the comment: > > About the devguide patch: > > a) The part about C roles and directives should probably mention version > specif

[issue12409] Moving "Documenting Python" to Devguide

2012-01-12 Thread Sandro Tosi
Changes by Sandro Tosi : Added file: http://bugs.python.org/file24219/doc2devguide-cpython.patch ___ Python tracker <http://bugs.python.org/issue12409> ___ ___ Python-bug

[issue12409] Moving "Documenting Python" to Devguide

2012-01-12 Thread Sandro Tosi
Sandro Tosi added the comment: Sure, sorry I didn't make it before; here attached the 2 patches, one against devguide, the other to default cpython repo. -- keywords: +patch Added file: http://bugs.python.org/file24218/doc2devguide-devguide.

[issue13763] rm obsolete reference in devguide

2012-01-11 Thread Sandro Tosi
Sandro Tosi added the comment: But we may explain what's behind: "after the mercury chemical element symbol" - what do you think? -- nosy: +sandro.tosi stage: -> patch review ___ Python tracker <http://bugs.

[issue13681] Aifc read compressed frames fix

2012-01-11 Thread Sandro Tosi
Sandro Tosi added the comment: Hi Oleg, thanks for your interest in aifc module! I think that if the fix for audioop has a reason for itself to exists, then another issue (for that only) has to be filed and set the accordingly dependency on this one. -- nosy: +sandro.tosi

[issue12409] Moving "Documenting Python" to Devguide

2012-01-11 Thread Sandro Tosi
Sandro Tosi added the comment: Hi, i'm at last back with some work to show; I've integrated all the "Documenting python" doc into devguide, and the commits are in this sandbox: http://hg.python.org/sandbox/morph-devguide/shortlog/a92d431ef749 (`documenting` branch). I

[issue13762] missing section: how to contribute to devguide

2012-01-11 Thread Sandro Tosi
Changes by Sandro Tosi : -- resolution: -> invalid ___ Python tracker <http://bugs.python.org/issue13762> ___ ___ Python-bugs-list mailing list Unsubscri

[issue13762] missing section: how to contribute to devguide

2012-01-11 Thread Sandro Tosi
Sandro Tosi added the comment: Hello Tshepang, The current section is at: http://docs.python.org/devguide/docquality.html#helping-with-the-developer-s-guide reachable from the mainpage looking for helping with documentation. it may be a little to condense but it is a good start (and it seems

[issue11205] Evaluation order of dictionary display is different from reference manual.

2012-01-09 Thread Sandro Tosi
Changes by Sandro Tosi : -- nosy: +sandro.tosi ___ Python tracker <http://bugs.python.org/issue11205> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue13743] xml.dom.minidom.Document class is not documented

2012-01-09 Thread Sandro Tosi
New submission from Sandro Tosi : Hello, following up http://mail.python.org/pipermail/docs/2012-January/007026.html I noticed the whole Document class (and relative methods) is not documented. Maybe it is a choice to not document it, or maybe it's just a missing doc, dunno, the'

[issue13026] Dis module - documentation of MAKE_FUNCTION

2012-01-08 Thread Sandro Tosi
Sandro Tosi added the comment: Hi Arnaud, would you like to provide a patch to update the MAKE_FUNCTION opcode description? That would speed up a bit the fix-up. Also, I don't have that clear what "For each keyword only default, ..." mean: are those the default values for ke

[issue13122] Out of date links in the sidebar of the documentation index of versions 3.1 and 3.2

2012-01-08 Thread Sandro Tosi
Sandro Tosi added the comment: Hi all, how can we fix it? or better, should we fix it? From a user POV, it is a weird to see 3.1 doc referring to 3.2 doc as "in development" then clicking on that link, being redirect to 3.3a0 doc and see there that 3.2 is stable (with no referen

[issue13729] Evaluation order for dics key/value

2012-01-07 Thread Sandro Tosi
New submission from Sandro Tosi : Hello, following up http://mail.python.org/pipermail/docs/2011-December/006782.html , I'm opening this issue to have others confirmation of what's happening: echo -e "def ev(r):\nprint(r)\nreturn r\n\n{ev(1): ev(2), ev(3): ev(4)}"

[issue13728] Description of -m and -c cli options wrong?

2012-01-07 Thread Sandro Tosi
New submission from Sandro Tosi : Hi, looking at http://mail.python.org/pipermail/docs/2011-December/006672.html I tried to replicate what the user said, and *it seems* that -c and -m doesn't add the current directory to the start of sys.path: $ echo -e "import sys\nprint

[issue12415] Missing: How to checkout the Doc sources

2012-01-05 Thread Sandro Tosi
Sandro Tosi added the comment: Hi Éric, did you reconsider the text of the patch or this issue just passed under your radar? -- ___ Python tracker <http://bugs.python.org/issue12

[issue12042] What's New multiprocessing example error

2012-01-05 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks Davi for the report and Jordan for the patch! Jordan, a tip for your (hopefully) future contributions: for doc patches, please don't re-indent the whole paragraph, since it makes harder to identify the actual changes, just change what is needed, an

[issue11984] Wrong "See also" in symbol and token module docs

2012-01-05 Thread Sandro Tosi
Sandro Tosi added the comment: Hi Davi, thanks for your report! I've removed the reference from symbol to parser, given this last module doesn't show anymore how to user symbol, and it's encouraging to use ast module instead. -- nosy: +sandro.tosi resolution:

[issue10772] Several actions for argparse arguments missing from docs

2012-01-04 Thread Sandro Tosi
Sandro Tosi added the comment: Thanks Marc for the patch, I've just committed it. -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker <http://bugs.pyth

  1   2   3   4   5   >