From report at bugs.python.org Fri Sep 1 10:51:16 2017 From: report at bugs.python.org (Pritish Patil) Date: Fri, 01 Sep 2017 14:51:16 +0000 Subject: [docs] [issue31322] SimpleNamespace deep copy Message-ID: <1504277476.43.0.203831960923.issue31322@psf.upfronthosting.co.za> New submission from Pritish Patil: I am new here and not sure how I can suggest this properly. When using nested SimpleNamespaces, a making a copy by using new_NS=SimpleNamespace(**namespace.__dict__.copy()) only copies the highest level namespace. This is expected in python as shallow copies are preferred. But, a nested deep copy function would be nice, and will allow easier use. I suggest a simple def my_namespace_copy(namespace): '''Recursively deep copies nested namespaces''' new_NS=SimpleNamespace(**namespace.__dict__.copy()) for i in new_NS.__dict__.keys(): if(type(new_NS.__dict__[i]) == types.SimpleNamespace): new_NS.__setattr__(i, my_namespace_copy(new_NS.__getattribute__(i))) return new_NS I am not sure of the exact implementation of the class and guess this would need some appropriate modifications. I suggest this be added at SimpleNameSpace.__copy__ or at SimpleNameSpace.__deepcopy__ ---------- assignee: docs at python components: Documentation, Library (Lib) messages: 301112 nosy: Pritish Patil, docs at python priority: normal severity: normal status: open title: SimpleNamespace deep copy type: enhancement versions: Python 3.5, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 1 10:52:47 2017 From: report at bugs.python.org (Pritish Patil) Date: Fri, 01 Sep 2017 14:52:47 +0000 Subject: [docs] [issue31322] SimpleNamespace deep copy In-Reply-To: <1504277476.43.0.203831960923.issue31322@psf.upfronthosting.co.za> Message-ID: <1504277567.16.0.929776838289.issue31322@psf.upfronthosting.co.za> Changes by Pritish Patil : ---------- components: +Extension Modules -Documentation, Library (Lib) _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 3 15:25:38 2017 From: report at bugs.python.org (Cheryl Sabella) Date: Sun, 03 Sep 2017 19:25:38 +0000 Subject: [docs] [issue21818] cookielib documentation references Cookie module, not cookielib.Cookie class In-Reply-To: <1403306887.99.0.626699628104.issue21818@psf.upfronthosting.co.za> Message-ID: <1504466737.93.0.638849365253.issue21818@psf.upfronthosting.co.za> Cheryl Sabella added the comment: Can this issue be closed? ---------- nosy: +csabella _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 4 00:11:43 2017 From: report at bugs.python.org (Aaron Hall) Date: Mon, 04 Sep 2017 04:11:43 +0000 Subject: [docs] [issue26103] Contradiction in definition of "data descriptor" between (dotted lookup behavior/datamodel documentation) and (inspect lib/descriptor how-to) In-Reply-To: <1452718612.1.0.925403449689.issue26103@psf.upfronthosting.co.za> Message-ID: <1504498303.57.0.73308044847.issue26103@psf.upfronthosting.co.za> Aaron Hall added the comment: Serhiy, Not sure what else needs to be done to wrap this up. All checks are passing on the pull request. Thoughts? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 4 10:59:19 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 04 Sep 2017 14:59:19 +0000 Subject: [docs] [issue26103] Contradiction in definition of "data descriptor" between (dotted lookup behavior/datamodel documentation) and (inspect lib/descriptor how-to) In-Reply-To: <1452718612.1.0.925403449689.issue26103@psf.upfronthosting.co.za> Message-ID: <1504537159.44.0.115829457937.issue26103@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- assignee: -> rhettinger nosy: +rhettinger _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 4 13:45:20 2017 From: report at bugs.python.org (R. David Murray) Date: Mon, 04 Sep 2017 17:45:20 +0000 Subject: [docs] [issue16988] argparse: PARSER option for nargs not documented In-Reply-To: <1358458215.07.0.403888123098.issue16988@psf.upfronthosting.co.za> Message-ID: <1504547119.94.0.553959008224.issue16988@psf.upfronthosting.co.za> R. David Murray added the comment: I don't think this use case is enough to justify documenting it, since this is not an intuitive meaning of the word PARSER. I think if we wanted to expose this for this kind of use case, we'd want to rename the constant (with an alias for backward compatibility), which would be an enhancement. I'm going to close this, but someone who wants this could open an enhancement request. ---------- nosy: +r.david.murray resolution: -> not a bug stage: -> resolved status: open -> closed type: enhancement -> _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 4 14:27:53 2017 From: report at bugs.python.org (Eric Snow) Date: Mon, 04 Sep 2017 18:27:53 +0000 Subject: [docs] [issue12633] sys.modules doc entry should reflect restrictions In-Reply-To: <1311569390.98.0.906064511142.issue12633@psf.upfronthosting.co.za> Message-ID: <1504549673.85.0.793755016729.issue12633@psf.upfronthosting.co.za> Eric Snow added the comment: We're dropping PyInterpreterState.modules (#28411). ---------- resolution: -> wont fix stage: -> resolved status: open -> closed superseder: -> Eliminate PyInterpreterState.modules. _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 4 15:14:33 2017 From: report at bugs.python.org (R. David Murray) Date: Mon, 04 Sep 2017 19:14:33 +0000 Subject: [docs] [issue15427] Describe use of args parameter of argparse.ArgumentParser.parse_args In-Reply-To: <1342995154.12.0.902919829048.issue15427@psf.upfronthosting.co.za> Message-ID: <1504552473.29.0.428388169005.issue15427@psf.upfronthosting.co.za> Changes by R. David Murray : ---------- pull_requests: +3327 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 4 15:17:36 2017 From: report at bugs.python.org (R. David Murray) Date: Mon, 04 Sep 2017 19:17:36 +0000 Subject: [docs] [issue15427] Describe use of args parameter of argparse.ArgumentParser.parse_args In-Reply-To: <1342995154.12.0.902919829048.issue15427@psf.upfronthosting.co.za> Message-ID: <1504552656.81.0.178944333712.issue15427@psf.upfronthosting.co.za> R. David Murray added the comment: I've turned this into a PR. The example was already changed in a previous checkin. I reworded the optparse porting addition to match the existing style of the list. ---------- nosy: +r.david.murray _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 4 15:18:05 2017 From: report at bugs.python.org (R. David Murray) Date: Mon, 04 Sep 2017 19:18:05 +0000 Subject: [docs] [issue15427] Describe use of args parameter of argparse.ArgumentParser.parse_args In-Reply-To: <1342995154.12.0.902919829048.issue15427@psf.upfronthosting.co.za> Message-ID: <1504552685.92.0.0939365123151.issue15427@psf.upfronthosting.co.za> Changes by R. David Murray : ---------- versions: +Python 3.6, Python 3.7 -Python 3.2, Python 3.3, Python 3.4 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 4 17:30:34 2017 From: report at bugs.python.org (Gregory P. Smith) Date: Mon, 04 Sep 2017 21:30:34 +0000 Subject: [docs] [issue24896] It is undocumented that re.UNICODE and re.LOCALE affect re.IGNORECASE In-Reply-To: <1439987891.31.0.547960058443.issue24896@psf.upfronthosting.co.za> Message-ID: <1504560634.32.0.767645765497.issue24896@psf.upfronthosting.co.za> Changes by Gregory P. Smith : ---------- pull_requests: +3340 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 4 18:06:23 2017 From: report at bugs.python.org (R. David Murray) Date: Mon, 04 Sep 2017 22:06:23 +0000 Subject: [docs] [issue14191] argparse doesn't allow optionals within positionals In-Reply-To: <1330843053.88.0.983162018395.issue14191@psf.upfronthosting.co.za> Message-ID: <1504562783.22.0.796761823827.issue14191@psf.upfronthosting.co.za> Changes by R. David Murray : ---------- pull_requests: +3345 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 4 18:15:07 2017 From: report at bugs.python.org (R. David Murray) Date: Mon, 04 Sep 2017 22:15:07 +0000 Subject: [docs] [issue14191] argparse doesn't allow optionals within positionals In-Reply-To: <1330843053.88.0.983162018395.issue14191@psf.upfronthosting.co.za> Message-ID: <1504563307.56.0.656919580735.issue14191@psf.upfronthosting.co.za> R. David Murray added the comment: I've turned intermixed.patch into a PR. I tweaked the documentation so that it does not refer to the details of the implementation. I tweaked the implementation to have the 'try' start before the code that modifies the state, and did the line wrapping to <80 columns. I have one concern about this patch: parse_intermixed_args doesn't support all of the argparse features. It feels to me like it is worthwhile to add anyway, and maybe someone will figure out how to support more features later. But I'd like at least one other committer to concur :) Given concurrence I'll add news and what's new entries. paul.j3: I'm trying to review argparse patches during this core sprint week, so if you have anything in particular you want me to focus on, please let me know. ---------- stage: -> patch review type: behavior -> enhancement versions: +Python 3.7 -Python 3.4 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 4 19:21:46 2017 From: report at bugs.python.org (R. David Murray) Date: Mon, 04 Sep 2017 23:21:46 +0000 Subject: [docs] [issue15427] Describe use of args parameter of argparse.ArgumentParser.parse_args In-Reply-To: <1342995154.12.0.902919829048.issue15427@psf.upfronthosting.co.za> Message-ID: <1504567306.41.0.140849175025.issue15427@psf.upfronthosting.co.za> Changes by R. David Murray : ---------- pull_requests: +3348 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 4 19:22:41 2017 From: report at bugs.python.org (R. David Murray) Date: Mon, 04 Sep 2017 23:22:41 +0000 Subject: [docs] [issue15427] Describe use of args parameter of argparse.ArgumentParser.parse_args In-Reply-To: <1342995154.12.0.902919829048.issue15427@psf.upfronthosting.co.za> Message-ID: <1504567361.97.0.802034470496.issue15427@psf.upfronthosting.co.za> Changes by R. David Murray : ---------- pull_requests: +3350 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 4 22:10:41 2017 From: report at bugs.python.org (Glenn Linderman) Date: Tue, 05 Sep 2017 02:10:41 +0000 Subject: [docs] [issue14191] argparse doesn't allow optionals within positionals In-Reply-To: <1330843053.88.0.983162018395.issue14191@psf.upfronthosting.co.za> Message-ID: <1504577440.86.0.00357405652287.issue14191@psf.upfronthosting.co.za> Glenn Linderman added the comment: I would dearly love to discard my private copies of argparse subclasses to implement this that I have been using for the last 5 years. Please, some other committer, concur here! ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 5 07:03:43 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Tue, 05 Sep 2017 11:03:43 +0000 Subject: [docs] [issue24896] It is undocumented that re.UNICODE and re.LOCALE affect re.IGNORECASE In-Reply-To: <1439987891.31.0.547960058443.issue24896@psf.upfronthosting.co.za> Message-ID: <1504609423.49.0.389917618427.issue24896@psf.upfronthosting.co.za> Serhiy Storchaka added the comment: This wording is not correct as I noted in msg294324. ---------- versions: -Python 3.5 _______________________________________ Python tracker _______________________________________ From alainivars at gmail.com Tue Sep 5 02:15:27 2017 From: alainivars at gmail.com (_) Date: Tue, 5 Sep 2017 07:15:27 +0100 Subject: [docs] bug in Download doc Message-ID: Hi, First, Thanks for that perfect online documentation on Python. I find a problem on the web site, page: https://docs.python.org/3/download.html All the download link give an 404 error Kind regards, Alain IVARS *eMail: alainivars at gmail.com * *Mobile (BE): +32 488 690 005 Skype: highfeature or alainivars* *Mobile (UK): +44 7746 275 681* -------------- next part -------------- An HTML attachment was scrubbed... URL: From ar.fokin at gmail.com Fri Sep 1 04:49:02 2017 From: ar.fokin at gmail.com (Artem Fokin) Date: Fri, 1 Sep 2017 10:49:02 +0200 Subject: [docs] Can't download Python 2.7.14rc1 documentation - Not found Message-ID: Hi! Just wanted to inform: https://docs.python.org/2/download.html The links provided seems to give 404 Not Found https://docs.python.org/2/archives/python-2.7.14rc1-docs-pdf-letter.zip Thanks! Artem Fokin -------------- next part -------------- An HTML attachment was scrubbed... URL: From christophe.cachat at comcast.net Mon Sep 4 11:24:07 2017 From: christophe.cachat at comcast.net (Christophe CACHAT) Date: Mon, 4 Sep 2017 11:24:07 -0400 Subject: [docs] All doc download links seem broken Message-ID: Dear members of the Python team, It seems all the links to download PDF or ePub versions of documentation are broken (tried version 2.7 to 3.7dev without success) either as .zip or .tar.bz2. Only 404 message from nginx. I used https://docs.python.org/3/download.html from the main https://docs.python.org page "Download these documents?. Thanks in advance for fixing them, I travel a lot and wanted to have them available offline to work when airline does not offer wifi. Best regards, Christophe CACHAT -------------- next part -------------- An HTML attachment was scrubbed... URL: From fairyasiangangsta.o at gmail.com Tue Sep 5 00:09:39 2017 From: fairyasiangangsta.o at gmail.com (Hanna) Date: Mon, 4 Sep 2017 21:09:39 -0700 Subject: [docs] Doc not found Message-ID: <59ae236d.4949650a.fc7b8.280e@mx.google.com> Hi I tried to download documents for version 3.6.2 but encountered doc not found error. Thank you, Sent from Mail for Windows 10 -------------- next part -------------- An HTML attachment was scrubbed... URL: From fcojperez at gmail.com Sun Sep 3 04:50:15 2017 From: fcojperez at gmail.com (Francisco Perez) Date: Sun, 3 Sep 2017 10:50:15 +0200 Subject: [docs] I cannot download any documentation Message-ID: <025805E0-F086-4534-87F7-E337E5E7CE44@gmail.com> Hi, I would like to have a copy of Python documentation on my laptop for doing some queries if I don?t have internet connection. But I don?t know why it seems that all links for downloading are broken. Please, find attached a screenshot of a error I get. Cheers, Paco -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Screen Shot 2017-09-03 at 10.49.17.png Type: image/png Size: 64761 bytes Desc: not available URL: From filipeandujar at gmail.com Tue Sep 5 03:08:07 2017 From: filipeandujar at gmail.com (Filipe Andujar) Date: Tue, 5 Sep 2017 04:08:07 -0300 Subject: [docs] Issue - Python 3.6.2 Documentation Download Message-ID: Hi There, I was trying to download Python 3.6.2 Documentation PDF to study more about Asyncio but i received a 404 error. I tried all links but I was unable to download it. Thank you, Filipe Andujar -------------- next part -------------- An HTML attachment was scrubbed... URL: From heyjude.eilat at gmail.com Sun Sep 3 02:26:21 2017 From: heyjude.eilat at gmail.com (=?utf-8?B?15In15XXk9eZINeQ16DXoNeR16jXkg==?=) Date: Sun, 3 Sep 2017 09:26:21 +0300 Subject: [docs] Python 3 doc download links Message-ID: <59aba08c.cb8f190a.d129b.4324@mx.google.com> The download links return 404 Not Found error Sent from Mail for Windows 10 -------------- next part -------------- An HTML attachment was scrubbed... URL: From kukuhprihastomo at gmail.com Mon Sep 4 00:37:54 2017 From: kukuhprihastomo at gmail.com (Kukuh Prihastomo) Date: Mon, 4 Sep 2017 11:37:54 +0700 Subject: [docs] Link download doesnt work Message-ID: the document download link python 3.6.2 does not work. error 404 not found -------------- next part -------------- An HTML attachment was scrubbed... URL: From lohande.harshad at gmail.com Fri Sep 1 04:25:17 2017 From: lohande.harshad at gmail.com (harshad lohande) Date: Fri, 1 Sep 2017 13:55:17 +0530 Subject: [docs] Unable to download Python documentation In-Reply-To: References: Message-ID: Hi, I am unable to download python documentation in PDF format. When clicking on download link I am getting HTTP 404 error. Link for download is: https://docs.python.org/2/download.html Regards, Harshad Lohande -------------- next part -------------- An HTML attachment was scrubbed... URL: From luciano.pinheiro at gmail.com Sat Sep 2 21:29:47 2017 From: luciano.pinheiro at gmail.com (Luciano Pinheiro) Date: Sat, 2 Sep 2017 22:29:47 -0300 Subject: [docs] Download python docs Message-ID: Hello, I'm trying to download docs for offline view, but they are missing. https://docs.python.org/2.7/download.html Just gives us 404 error. (And 3.x too.) Would you please fix it? Thanks. Regards. Luciano Pinheiro. -- Luciano Pinheiro. http://www.lucianopinheiro.net Twitter: @lucianopinheiro Fa?a backup autom?tico de seus dados no Dropbox: http://db.tt/gcnNY0v -------------- next part -------------- An HTML attachment was scrubbed... URL: From mkbrown32 at hotmail.com Mon Sep 4 10:43:37 2017 From: mkbrown32 at hotmail.com (Mark Brown) Date: Mon, 4 Sep 2017 14:43:37 +0000 Subject: [docs] Seeking python 2.7.x PDF documents download Message-ID: I am trying to obtain the python 2.7.x documents in PDF form, but the link is not working at: https://docs.python.org/2.7/download.html . Is there any other way to obtain the documentation in PDF form ? Mark Brown -------------- next part -------------- An HTML attachment was scrubbed... URL: From ruthhuijgens at gmail.com Mon Sep 4 08:44:28 2017 From: ruthhuijgens at gmail.com (Ruth Huijgens) Date: Mon, 4 Sep 2017 14:44:28 +0200 Subject: [docs] Can't download documentation Message-ID: Hello, I'm new to Python and since I have very limited internet access at home, I wanted to download the documentation as pdf (.zip) from https://docs.python.org/3.6/download.html . Alas all download links seem to be corrupted. Could this please be fixed? Thanks! Best regards Ruth -------------- next part -------------- An HTML attachment was scrubbed... URL: From sameerpadghan at gmail.com Mon Sep 4 06:37:29 2017 From: sameerpadghan at gmail.com (Sameer Padghan) Date: Mon, 4 Sep 2017 16:07:29 +0530 Subject: [docs] Not able to download. In-Reply-To: References: Message-ID: your website is great but I am not able to download the official documentation pages of python.I hope you will help me as soon as possible. On Wed, Aug 30, 2017 at 10:50 AM, Sameer Padghan wrote: > Our website is great but I am not able to download the official > documentation pages of python.I hope you will help me as soon as possible. > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From saykam07 at gmail.com Mon Sep 4 20:49:28 2017 From: saykam07 at gmail.com (sayali kamat) Date: Mon, 4 Sep 2017 20:49:28 -0400 Subject: [docs] Not able to download python docs Message-ID: Hi, I am not able to download python documentation in pdf format from this link: https://docs.python.org/2/download.html Can you mail me the same? Regards, Sayali -------------- next part -------------- An HTML attachment was scrubbed... URL: From sheraaz.jason.we at gmail.com Sat Sep 2 06:45:04 2017 From: sheraaz.jason.we at gmail.com (Sheraaz Jason) Date: Sat, 2 Sep 2017 16:15:04 +0530 Subject: [docs] Can't download Python Docs. 404 Error Message-ID: Hi Team, For some reason the python3.6 docs are all 404ing. I can't get them as a zip or tar for any of the variations. :O Not sure if you know it's happening or not but I noticed this email was provided if we face problems, so here I am. Please help remedy this! Thanks. :) Regards, *Sheraaz Jason* -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmsimonmilton at gmail.com Mon Sep 4 02:57:58 2017 From: jmsimonmilton at gmail.com (Simion Milton) Date: Mon, 4 Sep 2017 12:27:58 +0530 Subject: [docs] Request for new documentation and add in subscription list In-Reply-To: References: Message-ID: Dear Sir/Madam, This is Simon Milton from india. I am a fresher with good to get a good knowledge on Python, in addition, i am very much interested to know in Python language. Now I got new 3.6.2 updated documentation but in future I want to get new updates on Python so I don't know that how to subscribe the Python updating system. Can you please add me on subscription list or send the link for filling subscription list page ? Email : jmsimonmilton at gmail.com Phone : +91-8072079605 Advance thanks, Simon Milton ? -------------- next part -------------- An HTML attachment was scrubbed... URL: From rohitsapkota1 at gmail.com Tue Sep 5 09:55:10 2017 From: rohitsapkota1 at gmail.com (rohit sapkota) Date: Tue, 5 Sep 2017 19:40:10 +0545 Subject: [docs] windows help file problem Message-ID: Hello, I have a little problem in my python help file for windows(.chm file). Help file that comes with python 3.6.2 works perfectly fine but manually downloaded help file does not work. Thank you, Rohit Sapkota -------------- next part -------------- An HTML attachment was scrubbed... URL: From report at bugs.python.org Tue Sep 5 18:53:59 2017 From: report at bugs.python.org (Christian Heimes) Date: Tue, 05 Sep 2017 22:53:59 +0000 Subject: [docs] [issue20762] SSLSocket.read() not documented In-Reply-To: <1393262503.02.0.956219773808.issue20762@psf.upfronthosting.co.za> Message-ID: <1504652038.79.0.524767599651.issue20762@psf.upfronthosting.co.za> Christian Heimes added the comment: I'll deprecate read() and write() in my upcoming PEP. ---------- resolution: -> later stage: needs patch -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 5 20:29:21 2017 From: report at bugs.python.org (R. David Murray) Date: Wed, 06 Sep 2017 00:29:21 +0000 Subject: [docs] [issue14191] argparse doesn't allow optionals within positionals In-Reply-To: <1330843053.88.0.983162018395.issue14191@psf.upfronthosting.co.za> Message-ID: <1504657761.42.0.667863458165.issue14191@psf.upfronthosting.co.za> R. David Murray added the comment: I got an offline agreement from Zach Ware, and nobody here at the sprint has objected (though I don't know if anyone else looked), so I'll go ahead and finish the PR. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 09:55:48 2017 From: report at bugs.python.org (Christian Heimes) Date: Wed, 06 Sep 2017 13:55:48 +0000 Subject: [docs] [issue27340] bytes-like objects with socket.sendall(), SSL, and http.client In-Reply-To: <1466137520.57.0.744540833455.issue27340@psf.upfronthosting.co.za> Message-ID: <1504706148.28.0.755658334137.issue27340@psf.upfronthosting.co.za> Changes by Christian Heimes : ---------- pull_requests: +3392 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 13:14:00 2017 From: report at bugs.python.org (Christian Heimes) Date: Wed, 06 Sep 2017 17:14:00 +0000 Subject: [docs] [issue21649] Mention "Recommendations for Secure Use of TLS and DTLS" In-Reply-To: <1401786597.2.0.166065083457.issue21649@psf.upfronthosting.co.za> Message-ID: <1504718040.28.0.71755824514.issue21649@psf.upfronthosting.co.za> Changes by Christian Heimes : ---------- pull_requests: +3394 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 15:44:41 2017 From: report at bugs.python.org (Christian Heimes) Date: Wed, 06 Sep 2017 19:44:41 +0000 Subject: [docs] [issue29236] 'an ASCII string of one or more PEM-encoded certificates' needs to be unicode In-Reply-To: <1484097460.25.0.906949156541.issue29236@psf.upfronthosting.co.za> Message-ID: <1504727081.34.0.0533744914554.issue29236@psf.upfronthosting.co.za> Changes by Christian Heimes : ---------- components: -SSL _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 15:50:04 2017 From: report at bugs.python.org (Christian Heimes) Date: Wed, 06 Sep 2017 19:50:04 +0000 Subject: [docs] [issue29470] ssl: SNI callbacks should not modify context objects In-Reply-To: <1486448551.68.0.60824192451.issue29470@psf.upfronthosting.co.za> Message-ID: <1504727404.36.0.944230910562.issue29470@psf.upfronthosting.co.za> Christian Heimes added the comment: OK, let's update the documentation with a better example. Are you still interested to contribute a simple example? ---------- assignee: christian.heimes -> docs at python components: +Documentation -SSL nosy: +docs at python resolution: not a bug -> type: crash -> enhancement versions: +Python 2.7, Python 3.7 -Python 3.5 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 15:57:26 2017 From: report at bugs.python.org (Christian Heimes) Date: Wed, 06 Sep 2017 19:57:26 +0000 Subject: [docs] [issue29394] Cannot tunnel TLS connection through TLS connection In-Reply-To: <1485847183.69.0.499542154053.issue29394@psf.upfronthosting.co.za> Message-ID: <1504727846.46.0.269172104661.issue29394@psf.upfronthosting.co.za> Christian Heimes added the comment: A documentation update wouldn't hurt, though. ---------- assignee: christian.heimes -> docs at python components: +Documentation -SSL nosy: +docs at python versions: -Python 3.5 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 18:24:23 2017 From: report at bugs.python.org (R. David Murray) Date: Wed, 06 Sep 2017 22:24:23 +0000 Subject: [docs] [issue31369] re.RegexFlag is not included in __all__ In-Reply-To: <1504730402.58.0.544251648863.issue31369@psf.upfronthosting.co.za> Message-ID: <1504736663.49.0.0144158159457.issue31369@psf.upfronthosting.co.za> R. David Murray added the comment: I think RegexFlag is an implementation detail, but it is true that it isn't prefixed with a _ so putting it in __all__ is not obviously wrong. However, if we do that we should also document it (currently it is mentioned only in a versionchanged line, which isn't technically documenting it). I find it curious that static typing is affected by __all___, but I don't really know anything about typing. ---------- assignee: -> docs at python components: +Documentation nosy: +docs at python, r.david.murray versions: +Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 18:43:21 2017 From: report at bugs.python.org (Pieter-Jan Briers) Date: Wed, 06 Sep 2017 22:43:21 +0000 Subject: [docs] [issue31369] re.RegexFlag is not included in __all__ In-Reply-To: <1504730402.58.0.544251648863.issue31369@psf.upfronthosting.co.za> Message-ID: <1504737801.52.0.895111997047.issue31369@psf.upfronthosting.co.za> Pieter-Jan Briers added the comment: I suppose it may be an implementation detail, though I wouldn't be amazed that had enum existed when re was written it'd have been used instead of constant integers at the time. Though I do suppose exposing it fully would add two ways to get the flags which I can see how it would be considered bad. It's still useful for type checking though, and while I did make a PR to add it to typeshed, that still leaves it in an iffy state and I probably would not be the last person to be confused by it initially. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 18:53:45 2017 From: report at bugs.python.org (R. David Murray) Date: Wed, 06 Sep 2017 22:53:45 +0000 Subject: [docs] [issue31369] re.RegexFlag is not included in __all__ In-Reply-To: <1504730402.58.0.544251648863.issue31369@psf.upfronthosting.co.za> Message-ID: <1504738425.27.0.653067641846.issue31369@psf.upfronthosting.co.za> R. David Murray added the comment: Well, I consider that they really should be named constants and not an enum, which is why I consider it an implementation detail :) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 19:07:40 2017 From: report at bugs.python.org (Gregory P. Smith) Date: Wed, 06 Sep 2017 23:07:40 +0000 Subject: [docs] [issue22635] subprocess.getstatusoutput changed behavior in 3.4 (maybe 3.3.4?) In-Reply-To: <1413320958.05.0.462062330084.issue22635@psf.upfronthosting.co.za> Message-ID: <1504739260.78.0.767676060823.issue22635@psf.upfronthosting.co.za> Changes by Gregory P. Smith : ---------- pull_requests: +3404 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 19:19:58 2017 From: report at bugs.python.org (Christian Heimes) Date: Wed, 06 Sep 2017 23:19:58 +0000 Subject: [docs] [issue21649] Mention "Recommendations for Secure Use of TLS and DTLS" In-Reply-To: <1401786597.2.0.166065083457.issue21649@psf.upfronthosting.co.za> Message-ID: <1504739998.47.0.319689971347.issue21649@psf.upfronthosting.co.za> Christian Heimes added the comment: New changeset ad0ffa033ea79f7c7cb14b1b1cc10888ea9e9913 by Christian Heimes in branch 'master': bpo-21649: Add RFC 7525 and Mozilla server side TLS (#3387) https://github.com/python/cpython/commit/ad0ffa033ea79f7c7cb14b1b1cc10888ea9e9913 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 19:20:06 2017 From: report at bugs.python.org (Roundup Robot) Date: Wed, 06 Sep 2017 23:20:06 +0000 Subject: [docs] [issue21649] Mention "Recommendations for Secure Use of TLS and DTLS" In-Reply-To: <1401786597.2.0.166065083457.issue21649@psf.upfronthosting.co.za> Message-ID: <1504740006.79.0.35179931035.issue21649@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3405 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 19:20:07 2017 From: report at bugs.python.org (Roundup Robot) Date: Wed, 06 Sep 2017 23:20:07 +0000 Subject: [docs] [issue21649] Mention "Recommendations for Secure Use of TLS and DTLS" In-Reply-To: <1401786597.2.0.166065083457.issue21649@psf.upfronthosting.co.za> Message-ID: <1504740007.51.0.17093072147.issue21649@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3406 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 20:18:50 2017 From: report at bugs.python.org (Roundup Robot) Date: Thu, 07 Sep 2017 00:18:50 +0000 Subject: [docs] [issue30096] Update examples in abc documentation to use abc.ABC In-Reply-To: <1492545098.58.0.705598301268.issue30096@psf.upfronthosting.co.za> Message-ID: <1504743530.27.0.907169683791.issue30096@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3409 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 20:25:44 2017 From: report at bugs.python.org (R. David Murray) Date: Thu, 07 Sep 2017 00:25:44 +0000 Subject: [docs] [issue14191] argparse doesn't allow optionals within positionals In-Reply-To: <1330843053.88.0.983162018395.issue14191@psf.upfronthosting.co.za> Message-ID: <1504743942.81.0.692334650091.issue14191@psf.upfronthosting.co.za> R. David Murray added the comment: New changeset 0f6b9d230674da784ca79a0cf1a03d2af5a8b6a8 by R. David Murray in branch 'master': bpo-14191 Add parse_intermixed_args. (#3319) https://github.com/python/cpython/commit/0f6b9d230674da784ca79a0cf1a03d2af5a8b6a8 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 20:27:33 2017 From: report at bugs.python.org (R. David Murray) Date: Thu, 07 Sep 2017 00:27:33 +0000 Subject: [docs] [issue14191] argparse doesn't allow optionals within positionals In-Reply-To: <1330843053.88.0.983162018395.issue14191@psf.upfronthosting.co.za> Message-ID: <1504744053.25.0.207883010606.issue14191@psf.upfronthosting.co.za> R. David Murray added the comment: Thanks Paul. By the way, if you want your "real name" in What's New, just let me know what it is and I'll make the change. ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 20:31:33 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Thu, 07 Sep 2017 00:31:33 +0000 Subject: [docs] [issue21649] Mention "Recommendations for Secure Use of TLS and DTLS" In-Reply-To: <1401786597.2.0.166065083457.issue21649@psf.upfronthosting.co.za> Message-ID: <1504744293.61.0.692978177609.issue21649@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 1fc47b40af3e3e80902100a2baa472b19dd47010 by Mariatta (Miss Islington (bot)) in branch '3.6': [3.6] bpo-21649: Add RFC 7525 and Mozilla server side TLS (GH-3387) (GH-3399) https://github.com/python/cpython/commit/1fc47b40af3e3e80902100a2baa472b19dd47010 ---------- nosy: +Mariatta _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 20:31:50 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Thu, 07 Sep 2017 00:31:50 +0000 Subject: [docs] [issue21649] Mention "Recommendations for Secure Use of TLS and DTLS" In-Reply-To: <1401786597.2.0.166065083457.issue21649@psf.upfronthosting.co.za> Message-ID: <1504744310.07.0.93615544496.issue21649@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset ab4894bba6e51105706f9fa016821434256585cd by Mariatta (Miss Islington (bot)) in branch '2.7': [2.7] bpo-21649: Add RFC 7525 and Mozilla server side TLS (GH-3387) (GH-3400) https://github.com/python/cpython/commit/ab4894bba6e51105706f9fa016821434256585cd ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 20:32:27 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Thu, 07 Sep 2017 00:32:27 +0000 Subject: [docs] [issue21649] Mention "Recommendations for Secure Use of TLS and DTLS" In-Reply-To: <1401786597.2.0.166065083457.issue21649@psf.upfronthosting.co.za> Message-ID: <1504744347.28.0.900342665625.issue21649@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: This has been backported. Closing the issue. Thanks all. ---------- resolution: -> fixed stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 20:39:25 2017 From: report at bugs.python.org (Gregory P. Smith) Date: Thu, 07 Sep 2017 00:39:25 +0000 Subject: [docs] [issue22635] subprocess.getstatusoutput changed behavior in 3.4 (maybe 3.3.4?) In-Reply-To: <1413320958.05.0.462062330084.issue22635@psf.upfronthosting.co.za> Message-ID: <1504744765.62.0.531301667688.issue22635@psf.upfronthosting.co.za> Gregory P. Smith added the comment: New changeset 738b7d9766e1a794aaaabfba0d515a467ba833ca by Gregory P. Smith in branch 'master': bpo-22635: subprocess.getstatusoutput doc update. (#3398) https://github.com/python/cpython/commit/738b7d9766e1a794aaaabfba0d515a467ba833ca ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 20:39:36 2017 From: report at bugs.python.org (Roundup Robot) Date: Thu, 07 Sep 2017 00:39:36 +0000 Subject: [docs] [issue22635] subprocess.getstatusoutput changed behavior in 3.4 (maybe 3.3.4?) In-Reply-To: <1413320958.05.0.462062330084.issue22635@psf.upfronthosting.co.za> Message-ID: <1504744776.85.0.662256961304.issue22635@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3411 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 22:37:15 2017 From: report at bugs.python.org (Christian Heimes) Date: Thu, 07 Sep 2017 02:37:15 +0000 Subject: [docs] [issue24516] SSL create_default_socket purpose insufficiently documented In-Reply-To: <1435323940.35.0.0347196481189.issue24516@psf.upfronthosting.co.za> Message-ID: <1504751835.71.0.420336473485.issue24516@psf.upfronthosting.co.za> Changes by Christian Heimes : ---------- resolution: -> out of date stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 6 22:57:54 2017 From: report at bugs.python.org (Christian Heimes) Date: Thu, 07 Sep 2017 02:57:54 +0000 Subject: [docs] [issue22635] subprocess.getstatusoutput changed behavior in 3.4 (maybe 3.3.4?) In-Reply-To: <1413320958.05.0.462062330084.issue22635@psf.upfronthosting.co.za> Message-ID: <1504753074.36.0.0654714649241.issue22635@psf.upfronthosting.co.za> Christian Heimes added the comment: New changeset dee54f6010ee2df60322c350a5f1dc8bfcf367d6 by Christian Heimes (Miss Islington (bot)) in branch '3.6': [3.6] bpo-22635: subprocess.getstatusoutput doc update. (GH-3398) (#3411) https://github.com/python/cpython/commit/dee54f6010ee2df60322c350a5f1dc8bfcf367d6 ---------- nosy: +christian.heimes _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 00:34:01 2017 From: report at bugs.python.org (Gregory P. Smith) Date: Thu, 07 Sep 2017 04:34:01 +0000 Subject: [docs] [issue22635] subprocess.getstatusoutput changed behavior in 3.4 (maybe 3.3.4?) In-Reply-To: <1413320958.05.0.462062330084.issue22635@psf.upfronthosting.co.za> Message-ID: <1504758841.23.0.163993935451.issue22635@psf.upfronthosting.co.za> Gregory P. Smith added the comment: marking "closed/resolved" but also "won't fix" as the behavior change remains, but we've done the safest thing at this point: documented the fact. ---------- resolution: -> wont fix stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 00:48:57 2017 From: report at bugs.python.org (=?utf-8?b?VmVkcmFuIMSMYcSNacSH?=) Date: Thu, 07 Sep 2017 04:48:57 +0000 Subject: [docs] [issue30096] Update examples in abc documentation to use abc.ABC In-Reply-To: <1492545098.58.0.705598301268.issue30096@psf.upfronthosting.co.za> Message-ID: <1504759737.19.0.151303993396.issue30096@psf.upfronthosting.co.za> Vedran ?a?i? added the comment: "Best practices" according to whom? Inheritance is one thing, metaclass changing is another thing. They should look different. Yes, I appreciate the fact that I can write "(Blah)" instead of "(metaclass=BlahMeta)" in quick and dirty scripts, but my feeling is that that practice shouldn't be promoted in the docs. Please read http://bugs.python.org/issue26988#msg273076 for another perspective. ---------- nosy: +veky _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 04:14:59 2017 From: report at bugs.python.org (Leonardo Taglialegne) Date: Thu, 07 Sep 2017 08:14:59 +0000 Subject: [docs] [issue31378] Missing documentation for sqlite3.OperationalError Message-ID: <1504772099.62.0.812032551606.issue31378@psf.upfronthosting.co.za> New submission from Leonardo Taglialegne: sqlite3.OperationalError has no documentation whatsoever in docs.python.org ---------- assignee: docs at python components: Documentation messages: 301575 nosy: Leonardo Taglialegne, docs at python priority: normal severity: normal status: open title: Missing documentation for sqlite3.OperationalError type: enhancement versions: Python 2.7, Python 3.3, Python 3.4, Python 3.5, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 04:44:37 2017 From: report at bugs.python.org (Berker Peksag) Date: Thu, 07 Sep 2017 08:44:37 +0000 Subject: [docs] [issue31378] Missing documentation for sqlite3.OperationalError In-Reply-To: <1504772099.62.0.812032551606.issue31378@psf.upfronthosting.co.za> Message-ID: <1504773877.12.0.721763395132.issue31378@psf.upfronthosting.co.za> Berker Peksag added the comment: Thank you for the report. I think we can add a simplified version of the OperationalError documentation in PEP 249: Exception raised for errors that are related to the database's operation and not necessarily under the control of the programmer, e.g. an unexpected disconnect occurs, the data source name is not found, a transaction could not be processed, a memory allocation error occurred during processing, etc. It must be a subclass of DatabaseError. Reference: https://www.python.org/dev/peps/pep-0249/#operationalerror ---------- nosy: +berker.peksag stage: -> needs patch versions: -Python 3.3, Python 3.4, Python 3.5 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 08:22:16 2017 From: report at bugs.python.org (Berker Peksag) Date: Thu, 07 Sep 2017 12:22:16 +0000 Subject: [docs] [issue21818] cookielib documentation references Cookie module, not cookielib.Cookie class In-Reply-To: <1403306887.99.0.626699628104.issue21818@psf.upfronthosting.co.za> Message-ID: <1504786936.29.0.146226961458.issue21818@psf.upfronthosting.co.za> Changes by Berker Peksag : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.5, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 14:32:09 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Thu, 07 Sep 2017 18:32:09 +0000 Subject: [docs] [issue30096] Update examples in abc documentation to use abc.ABC In-Reply-To: <1492545098.58.0.705598301268.issue30096@psf.upfronthosting.co.za> Message-ID: <1504809129.77.0.530969534187.issue30096@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset b0d0217c0e4c1512a06ef306928b2fd8f82d046e by Mariatta (Miss Islington (bot)) in branch '3.6': [3.6] bpo-30096: Use ABC in abc reference examples (GH-1220) (GH-3408) https://github.com/python/cpython/commit/b0d0217c0e4c1512a06ef306928b2fd8f82d046e ---------- nosy: +Mariatta _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 14:34:09 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Thu, 07 Sep 2017 18:34:09 +0000 Subject: [docs] [issue30096] Update examples in abc documentation to use abc.ABC In-Reply-To: <1492545098.58.0.705598301268.issue30096@psf.upfronthosting.co.za> Message-ID: <1504809249.14.0.912553626375.issue30096@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Backported to 3.6 by Miss Islington. Closing this issue. Thanks. ---------- resolution: -> fixed stage: backport needed -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 15:46:43 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Thu, 07 Sep 2017 19:46:43 +0000 Subject: [docs] [issue31270] Simplify documentation of itertools.zip_longest In-Reply-To: <1503590613.37.0.607996999117.issue31270@psf.upfronthosting.co.za> Message-ID: <1504813603.47.0.776519545732.issue31270@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- pull_requests: +3424 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 16:53:14 2017 From: report at bugs.python.org (Christian Heimes) Date: Thu, 07 Sep 2017 20:53:14 +0000 Subject: [docs] [issue31294] ZeroMQSocketListener and ZeroMQSocketHandler examples in the Logging Cookbook not working In-Reply-To: <1503946535.18.0.843983247211.issue31294@psf.upfronthosting.co.za> Message-ID: <1504817594.94.0.208285026733.issue31294@psf.upfronthosting.co.za> Christian Heimes added the comment: New changeset 586c0502b5eb9a39cabe0bc2707a8ff63114265c by Christian Heimes (Pablo Galindo) in branch 'master': bpo-31294: Fix ZeroMQSocketListener and ZeroMQSocketHandler examples (#3229) https://github.com/python/cpython/commit/586c0502b5eb9a39cabe0bc2707a8ff63114265c ---------- nosy: +christian.heimes _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 16:53:24 2017 From: report at bugs.python.org (Roundup Robot) Date: Thu, 07 Sep 2017 20:53:24 +0000 Subject: [docs] [issue31294] ZeroMQSocketListener and ZeroMQSocketHandler examples in the Logging Cookbook not working In-Reply-To: <1503946535.18.0.843983247211.issue31294@psf.upfronthosting.co.za> Message-ID: <1504817604.34.0.083048681287.issue31294@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- keywords: +patch pull_requests: +3427 stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 17:03:37 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Thu, 07 Sep 2017 21:03:37 +0000 Subject: [docs] [issue31270] Simplify documentation of itertools.zip_longest In-Reply-To: <1503590613.37.0.607996999117.issue31270@psf.upfronthosting.co.za> Message-ID: <1504818217.06.0.578453860726.issue31270@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 17:26:09 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Thu, 07 Sep 2017 21:26:09 +0000 Subject: [docs] [issue31075] Collections - ChainMap - Documentation example wrong order line In-Reply-To: <1501331057.19.0.539549352975.issue31075@psf.upfronthosting.co.za> Message-ID: <1504819569.43.0.815118414834.issue31075@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 17:51:12 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Thu, 07 Sep 2017 21:51:12 +0000 Subject: [docs] [issue31270] Simplify documentation of itertools.zip_longest In-Reply-To: <1503590613.37.0.607996999117.issue31270@psf.upfronthosting.co.za> Message-ID: <1504821071.99.0.490530416839.issue31270@psf.upfronthosting.co.za> Raymond Hettinger added the comment: New changeset 3147b0422cbeb98065666ccf95ab6845ac800fd4 by Raymond Hettinger in branch 'master': bpo-31270: Modification of Pr 3200 (#3427) https://github.com/python/cpython/commit/3147b0422cbeb98065666ccf95ab6845ac800fd4 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 18:21:48 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Thu, 07 Sep 2017 22:21:48 +0000 Subject: [docs] [issue31252] Operator.itemgetter documentation should include dictionary keys example In-Reply-To: <1503342137.82.0.389505495838.issue31252@psf.upfronthosting.co.za> Message-ID: <1504822908.52.0.435992438517.issue31252@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- keywords: +patch pull_requests: +3428 stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 18:26:25 2017 From: report at bugs.python.org (Christian Heimes) Date: Thu, 07 Sep 2017 22:26:25 +0000 Subject: [docs] [issue27340] bytes-like objects with socket.sendall(), SSL, and http.client In-Reply-To: <1466137520.57.0.744540833455.issue27340@psf.upfronthosting.co.za> Message-ID: <1504823185.68.0.0866017927786.issue27340@psf.upfronthosting.co.za> Changes by Christian Heimes : ---------- keywords: +patch pull_requests: +3431 stage: needs patch -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 18:26:37 2017 From: report at bugs.python.org (Christian Heimes) Date: Thu, 07 Sep 2017 22:26:37 +0000 Subject: [docs] [issue27340] bytes-like objects with socket.sendall(), SSL, and http.client In-Reply-To: <1466137520.57.0.744540833455.issue27340@psf.upfronthosting.co.za> Message-ID: <1504823197.84.0.622236478796.issue27340@psf.upfronthosting.co.za> Christian Heimes added the comment: New changeset 888bbdc192ec4db888a294ef758cf5510442dc9a by Christian Heimes in branch 'master': bpo-27340: Use memoryview in SSLSocket.sendall() (#3384) https://github.com/python/cpython/commit/888bbdc192ec4db888a294ef758cf5510442dc9a ---------- nosy: +christian.heimes _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 18:28:23 2017 From: report at bugs.python.org (Christian Heimes) Date: Thu, 07 Sep 2017 22:28:23 +0000 Subject: [docs] [issue31294] ZeroMQSocketListener and ZeroMQSocketHandler examples in the Logging Cookbook not working In-Reply-To: <1503946535.18.0.843983247211.issue31294@psf.upfronthosting.co.za> Message-ID: <1504823303.39.0.061259573216.issue31294@psf.upfronthosting.co.za> Christian Heimes added the comment: New changeset 27ce5a1b1931b670da234c30d24bfbbc93fa24d7 by Christian Heimes (Miss Islington (bot)) in branch '3.6': [3.6] bpo-31294: Fix ZeroMQSocketListener and ZeroMQSocketHandler examples (GH-3229) (#3430) https://github.com/python/cpython/commit/27ce5a1b1931b670da234c30d24bfbbc93fa24d7 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 18:37:19 2017 From: report at bugs.python.org (Gregory P. Smith) Date: Thu, 07 Sep 2017 22:37:19 +0000 Subject: [docs] [issue22635] subprocess.getstatusoutput changed behavior in 3.4 (maybe 3.3.4?) In-Reply-To: <1413320958.05.0.462062330084.issue22635@psf.upfronthosting.co.za> Message-ID: <1504823839.46.0.768468593139.issue22635@psf.upfronthosting.co.za> Changes by Gregory P. Smith : ---------- pull_requests: +3432 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 19:11:06 2017 From: report at bugs.python.org (Gregory P. Smith) Date: Thu, 07 Sep 2017 23:11:06 +0000 Subject: [docs] [issue22635] subprocess.getstatusoutput changed behavior in 3.4 (maybe 3.3.4?) In-Reply-To: <1413320958.05.0.462062330084.issue22635@psf.upfronthosting.co.za> Message-ID: <1504825866.02.0.993057768163.issue22635@psf.upfronthosting.co.za> Gregory P. Smith added the comment: New changeset 2eb0cb4787d02d995a9bb6dc075983792c12835c by Gregory P. Smith in branch 'master': bpo-22635: Update the getstatusoutput docstring. (#3435) https://github.com/python/cpython/commit/2eb0cb4787d02d995a9bb6dc075983792c12835c ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 19:11:13 2017 From: report at bugs.python.org (Roundup Robot) Date: Thu, 07 Sep 2017 23:11:13 +0000 Subject: [docs] [issue22635] subprocess.getstatusoutput changed behavior in 3.4 (maybe 3.3.4?) In-Reply-To: <1413320958.05.0.462062330084.issue22635@psf.upfronthosting.co.za> Message-ID: <1504825873.21.0.787040971206.issue22635@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3436 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 19:45:01 2017 From: report at bugs.python.org (Gregory P. Smith) Date: Thu, 07 Sep 2017 23:45:01 +0000 Subject: [docs] [issue22635] subprocess.getstatusoutput changed behavior in 3.4 (maybe 3.3.4?) In-Reply-To: <1413320958.05.0.462062330084.issue22635@psf.upfronthosting.co.za> Message-ID: <1504827901.19.0.908193894379.issue22635@psf.upfronthosting.co.za> Gregory P. Smith added the comment: New changeset fb4c28c032e26b3cdbe67eae3769d45207ac3507 by Gregory P. Smith (Miss Islington (bot)) in branch '3.6': [3.6] bpo-22635: Update the getstatusoutput docstring. (GH-3435) (#3439) https://github.com/python/cpython/commit/fb4c28c032e26b3cdbe67eae3769d45207ac3507 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 19:59:25 2017 From: report at bugs.python.org (Christian Heimes) Date: Thu, 07 Sep 2017 23:59:25 +0000 Subject: [docs] [issue27340] bytes-like objects with socket.sendall(), SSL, and http.client In-Reply-To: <1466137520.57.0.744540833455.issue27340@psf.upfronthosting.co.za> Message-ID: <1504828764.45.0.643588160147.issue27340@psf.upfronthosting.co.za> Christian Heimes added the comment: New changeset 9423f5d68874ff2e500cbe072c25f883cf754be8 by Christian Heimes in branch '3.6': [3.6] bpo-27340: Use memoryview in SSLSocket.sendall() (GH-3384) (#3434) https://github.com/python/cpython/commit/9423f5d68874ff2e500cbe072c25f883cf754be8 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 20:05:19 2017 From: report at bugs.python.org (Christian Heimes) Date: Fri, 08 Sep 2017 00:05:19 +0000 Subject: [docs] [issue27340] bytes-like objects with socket.sendall(), SSL, and http.client In-Reply-To: <1466137520.57.0.744540833455.issue27340@psf.upfronthosting.co.za> Message-ID: <1504829119.27.0.790036591034.issue27340@psf.upfronthosting.co.za> Christian Heimes added the comment: In Python 3.6 and master, SSLSocket.sendall() now accepts any bytes-like object that can be cast to bytes. Since it uses a sliced memoryview instead of sliced bytes, it avoids extra copies of the payload, too. ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.5 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 20:34:00 2017 From: report at bugs.python.org (Robert Weiner) Date: Fri, 08 Sep 2017 00:34:00 +0000 Subject: [docs] [issue31390] pydoc.Helper.keywords missing async and await Message-ID: <1504830840.14.0.251676747088.issue31390@psf.upfronthosting.co.za> New submission from Robert Weiner: Shouldn't async and await be added to the pydoc keywords list? ---------- assignee: docs at python components: Documentation messages: 301657 nosy: docs at python, rsw priority: normal severity: normal status: open title: pydoc.Helper.keywords missing async and await versions: Python 3.6 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 7 20:35:14 2017 From: report at bugs.python.org (Robert Weiner) Date: Fri, 08 Sep 2017 00:35:14 +0000 Subject: [docs] [issue31390] pydoc.Helper.keywords missing async and await In-Reply-To: <1504830840.14.0.251676747088.issue31390@psf.upfronthosting.co.za> Message-ID: <1504830914.66.0.0029388472723.issue31390@psf.upfronthosting.co.za> Changes by Robert Weiner : ---------- type: -> behavior _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 8 02:53:54 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Fri, 08 Sep 2017 06:53:54 +0000 Subject: [docs] [issue31252] Operator.itemgetter documentation should include dictionary keys example In-Reply-To: <1503342137.82.0.389505495838.issue31252@psf.upfronthosting.co.za> Message-ID: <1504853634.15.0.986275593585.issue31252@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 8 10:33:40 2017 From: report at bugs.python.org (Nathan Henrie) Date: Fri, 08 Sep 2017 14:33:40 +0000 Subject: [docs] [issue31395] Docs Downloads are 404s Message-ID: <1504881220.48.0.699097747984.issue31395@psf.upfronthosting.co.za> New submission from Nathan Henrie: Please see my (closed) issue, I was told to resubmit here. https://github.com/python/pythondotorg/issues/1140 Basically, I usually download a local copy of the epub and HTML docs so I can reference offline (and faster using the "custom search engine" feature of several modern browsers). Tried to download 3.6.2 and noticed I was getting a 404: https://docs.python.org/3/archives/python-3.6.2-docs-html.zip Testing the other links on the page, looks like most are down: ```shell_session $ curl -s https://docs.python.org/3/download.html | grep -o '"archives/.*"' | xargs -I{} bash -c 'echo; url="https://docs.python.org/3/{}"; echo "${url}"; c url -s -I "${url}" | head -n 1' https://docs.python.org/3/archives/python-3.6.2-docs-pdf-letter.zip HTTP/1.1 404 Not Found https://docs.python.org/3/archives/python-3.6.2-docs-pdf-letter.tar.bz2 HTTP/1.1 200 OK https://docs.python.org/3/archives/python-3.6.2-docs-pdf-a4.zip HTTP/1.1 404 Not Found https://docs.python.org/3/archives/python-3.6.2-docs-pdf-a4.tar.bz2 HTTP/1.1 404 Not Found https://docs.python.org/3/archives/python-3.6.2-docs-html.zip HTTP/1.1 404 Not Found https://docs.python.org/3/archives/python-3.6.2-docs-html.tar.bz2 HTTP/1.1 404 Not Found https://docs.python.org/3/archives/python-3.6.2-docs-text.zip HTTP/1.1 404 Not Found https://docs.python.org/3/archives/python-3.6.2-docs-text.tar.bz2 HTTP/1.1 404 Not Found https://docs.python.org/3/archives/python-3.6.2-docs.epub HTTP/1.1 404 Not Found ``` I looked to see if this was an existing issue, sorry if it's a duplicate. ---------- assignee: docs at python components: Documentation messages: 301699 nosy: docs at python, n8henrie priority: normal severity: normal status: open title: Docs Downloads are 404s _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 8 10:51:27 2017 From: report at bugs.python.org (Berker Peksag) Date: Fri, 08 Sep 2017 14:51:27 +0000 Subject: [docs] [issue31395] Docs Downloads are 404s In-Reply-To: <1504881220.48.0.699097747984.issue31395@psf.upfronthosting.co.za> Message-ID: <1504882287.56.0.841589829822.issue31395@psf.upfronthosting.co.za> Changes by Berker Peksag : ---------- nosy: +ned.deily _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 8 14:22:41 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Fri, 08 Sep 2017 18:22:41 +0000 Subject: [docs] [issue31394] Ellipsis_token.type != token.ELLIPSIS In-Reply-To: <1504862671.67.0.693274521398.issue31394@psf.upfronthosting.co.za> Message-ID: <1504894961.21.0.430760374531.issue31394@psf.upfronthosting.co.za> Terry J. Reedy added the comment: I think we should add 'and Ellipsis' in the tokenize doc to get 'all Operators and Delimiters tokens and Ellipsis are returned ...'. I would actually prefer 'Operator and Delimiter tokens' but I don't know if the 's' is needed to trigger the current linkage. ---------- assignee: -> docs at python components: +Documentation -Interpreter Core nosy: +docs at python, terry.reedy stage: resolved -> needs patch versions: +Python 3.7 -Python 3.4, Python 3.5 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 8 15:44:14 2017 From: report at bugs.python.org (Berker Peksag) Date: Fri, 08 Sep 2017 19:44:14 +0000 Subject: [docs] [issue31394] Ellipsis_token.type != token.ELLIPSIS In-Reply-To: <1504862671.67.0.693274521398.issue31394@psf.upfronthosting.co.za> Message-ID: <1504899854.0.0.728253670125.issue31394@psf.upfronthosting.co.za> Berker Peksag added the comment: Thank you for your detailed response, Aivar. I agree that adding 'and Ellipsis' would make the tokenize documentation clearer. Would you like to send a pull request? ---------- keywords: +easy type: -> enhancement _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 8 18:27:33 2017 From: report at bugs.python.org (Christian Heimes) Date: Fri, 08 Sep 2017 22:27:33 +0000 Subject: [docs] [issue31294] ZeroMQSocketListener and ZeroMQSocketHandler examples in the Logging Cookbook not working In-Reply-To: <1503946535.18.0.843983247211.issue31294@psf.upfronthosting.co.za> Message-ID: <1504909653.67.0.550177321598.issue31294@psf.upfronthosting.co.za> Christian Heimes added the comment: Thanks for your contribution. Your PR has been merged into 3.6 and master, which will become Python 3.7 eventually. ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 9 05:18:50 2017 From: report at bugs.python.org (Roundup Robot) Date: Sat, 09 Sep 2017 09:18:50 +0000 Subject: [docs] [issue31394] Ellipsis_token.type != token.ELLIPSIS In-Reply-To: <1504862671.67.0.693274521398.issue31394@psf.upfronthosting.co.za> Message-ID: <1504948730.16.0.604212007046.issue31394@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- keywords: +patch pull_requests: +3461 stage: needs patch -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 9 05:33:05 2017 From: report at bugs.python.org (Aivar Annamaa) Date: Sat, 09 Sep 2017 09:33:05 +0000 Subject: [docs] [issue31394] Ellipsis_token.type != token.ELLIPSIS In-Reply-To: <1504862671.67.0.693274521398.issue31394@psf.upfronthosting.co.za> Message-ID: <1504949585.03.0.00652934362707.issue31394@psf.upfronthosting.co.za> Aivar Annamaa added the comment: Here is the PR: https://github.com/python/cpython/pull/3469 (It's my first, so I don't know if I should to also update NEWS file or add "skip news" label. I signed the CLA, so I hope this warning goes away.) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 9 12:08:41 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Sat, 09 Sep 2017 16:08:41 +0000 Subject: [docs] [issue31394] Ellipsis_token.type != token.ELLIPSIS In-Reply-To: <1504862671.67.0.693274521398.issue31394@psf.upfronthosting.co.za> Message-ID: <1504973321.82.0.563320583221.issue31394@psf.upfronthosting.co.za> Terry J. Reedy added the comment: Once the CLA * shows up after your name, one of us should remove CLA needed tag and bot will verify. I believe tagging as trivial would also work. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 9 18:26:23 2017 From: report at bugs.python.org (Aaron Hall) Date: Sat, 09 Sep 2017 22:26:23 +0000 Subject: [docs] [issue28972] Document all "python -m" utilities In-Reply-To: <1481720403.32.0.43245427479.issue28972@psf.upfronthosting.co.za> Message-ID: <1504995983.11.0.9067842629.issue28972@psf.upfronthosting.co.za> Aaron Hall added the comment: I like this idea too, but perhaps it should just be a multi-column bulleted list (under the -m flag at https://docs.python.org/3/using/cmdline.html#interface-options) with links to the respective Standard Library doc? Then we just ensure the documentation for the module is complete with examples for the command line usage. ---------- nosy: +Aaron Hall _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 10 01:57:04 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sun, 10 Sep 2017 05:57:04 +0000 Subject: [docs] [issue15427] Describe use of args parameter of argparse.ArgumentParser.parse_args In-Reply-To: <1342995154.12.0.902919829048.issue15427@psf.upfronthosting.co.za> Message-ID: <1505023024.4.0.788810932318.issue15427@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Thanks, David. I merged the backport PRs. Closing this. ---------- nosy: +Mariatta resolution: -> fixed stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 11 13:03:23 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Mon, 11 Sep 2017 17:03:23 +0000 Subject: [docs] [issue31421] IDLE doc: add section on developing tkinter apps. Message-ID: <1505149403.52.0.663966414942.issue31421@psf.upfronthosting.co.za> New submission from Terry J. Reedy: One of IDLE's great features is being able to interactively work with tkinter gui's because run calls update, without blocking, in the background. Document it in a new subsection, '3.5 Developing tkinter applications'. Adapt the following (written for a python-list response): Mainloop is a blocking call, and while it is running, one can only interact with the data and gui in ways that one has already programmed. If you run the above with python -i, or equivalently, from an IDLE editor, you will not see a >>> prompt until you close the tk windows, at which point there is nothing left to interact with. However, if you run the code above from an IDLE editor, you can omit or comment out the mainloop call and still see the board, because IDLE's run code calls tk's update in a non-blocking manner about 20 times a second. Without mainloop running, you immediately get a >>> prompt and can interact with the gui in a live exploratory fashion. You can enter statements like the color assignment above, and the background updates will make them quickly take effect. ---------- assignee: docs at python components: Documentation, IDLE messages: 301888 nosy: docs at python, terry.reedy priority: normal severity: normal stage: needs patch status: open title: IDLE doc: add section on developing tkinter apps. type: enhancement versions: Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 11 13:03:42 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Mon, 11 Sep 2017 17:03:42 +0000 Subject: [docs] [issue31421] IDLE doc: add section on developing tkinter apps. In-Reply-To: <1505149403.52.0.663966414942.issue31421@psf.upfronthosting.co.za> Message-ID: <1505149422.88.0.63036719081.issue31421@psf.upfronthosting.co.za> Changes by Terry J. Reedy : ---------- components: -Documentation _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 11 13:04:09 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Mon, 11 Sep 2017 17:04:09 +0000 Subject: [docs] [issue31421] IDLE doc: add section on developing tkinter apps. In-Reply-To: <1505149403.52.0.663966414942.issue31421@psf.upfronthosting.co.za> Message-ID: <1505149449.98.0.328681643832.issue31421@psf.upfronthosting.co.za> Changes by Terry J. Reedy : ---------- assignee: docs at python -> terry.reedy _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 11 13:13:36 2017 From: report at bugs.python.org (Henk-Jaap Wagenaar) Date: Mon, 11 Sep 2017 17:13:36 +0000 Subject: [docs] [issue31421] IDLE doc: add section on developing tkinter apps. In-Reply-To: <1505149403.52.0.663966414942.issue31421@psf.upfronthosting.co.za> Message-ID: <1505150016.45.0.0798177926886.issue31421@psf.upfronthosting.co.za> Changes by Henk-Jaap Wagenaar : ---------- nosy: +Henk-Jaap Wagenaar _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 11 15:54:48 2017 From: report at bugs.python.org (Julien Palard) Date: Mon, 11 Sep 2017 19:54:48 +0000 Subject: [docs] [issue31423] Error while building PDF documentation Message-ID: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> New submission from Julien Palard: Since the docsbuild-scripts [1] upgraded its sphinx-build [2], we're having this error when building the docs: ! Undefined control sequence. \py at authoraddress -> \strong {Python Software Foundation}\\ Email: \email {d... l.58 \sphinxtableofcontents ! ==> Fatal error occurred, no output PDF file produced! it looks like to be from conf.py line 97 [3]: conf.py-95-# Additional stuff for the LaTeX preamble. conf.py-96-latex_elements['preamble'] = r''' conf.py:97:\authoraddress{ conf.py-98- \strong{Python Software Foundation}\\ conf.py-99- Email: \email{docs at python.org} conf.py-100-} [1]: https://github.com/python/docsbuild-scripts [2]: we merged https://github.com/python/docsbuild-scripts/pull/12 [3]: https://github.com/python/cpython/blob/909a6f626ff343937cd3f06fda996870e7890724/Doc/conf.py#L97 ---------- assignee: docs at python components: Documentation messages: 301895 nosy: docs at python, mdk priority: normal severity: normal status: open title: Error while building PDF documentation versions: Python 2.7, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 11 23:58:00 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Tue, 12 Sep 2017 03:58:00 +0000 Subject: [docs] [issue26103] Contradiction in definition of "data descriptor" between (dotted lookup behavior/datamodel documentation) and (inspect lib/descriptor how-to) In-Reply-To: <1452718612.1.0.925403449689.issue26103@psf.upfronthosting.co.za> Message-ID: <1505188680.8.0.470475122113.issue26103@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- assignee: rhettinger -> _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 08:00:28 2017 From: report at bugs.python.org (Stephan Houben) Date: Tue, 12 Sep 2017 12:00:28 +0000 Subject: [docs] [issue31427] Proposed addition to Windows FAQ Message-ID: <1505217628.46.0.613932244118.issue31427@psf.upfronthosting.co.za> New submission from Stephan Houben: Several people have asked on python-list why they are running into these errors. Python 3.6.0 can't start because api-ms-win-crt-runtime-l1-1-0.dll is missing. The solution is to install KB 2999226 "Update for Universal C Runtime in Windows". https://support.microsoft.com/en-us/help/2999226/update-for-universal-c-runtime-in-windows Propose to add this as a Windows FAQ. ---------- assignee: docs at python components: Documentation messages: 301952 nosy: Stephan Houben, docs at python priority: normal severity: normal status: open title: Proposed addition to Windows FAQ type: enhancement versions: Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 08:40:52 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Tue, 12 Sep 2017 12:40:52 +0000 Subject: [docs] [issue31421] IDLE doc: add section on developing tkinter apps. In-Reply-To: <1505149403.52.0.663966414942.issue31421@psf.upfronthosting.co.za> Message-ID: <1505220052.74.0.758081756656.issue31421@psf.upfronthosting.co.za> Changes by Terry J. Reedy : ---------- keywords: +patch pull_requests: +3508 stage: needs patch -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 09:05:20 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Tue, 12 Sep 2017 13:05:20 +0000 Subject: [docs] [issue31421] IDLE doc: add section on developing tkinter apps. In-Reply-To: <1505149403.52.0.663966414942.issue31421@psf.upfronthosting.co.za> Message-ID: <1505221520.36.0.801795760572.issue31421@psf.upfronthosting.co.za> Terry J. Reedy added the comment: New changeset 98758bc67fb39b74bab368bef8ff3b34554c77c8 by Terry Jan Reedy in branch 'master': bpo-31421: Document how IDLE runs tkinter programs. (#3513) https://github.com/python/cpython/commit/98758bc67fb39b74bab368bef8ff3b34554c77c8 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 09:05:25 2017 From: report at bugs.python.org (Roundup Robot) Date: Tue, 12 Sep 2017 13:05:25 +0000 Subject: [docs] [issue31421] IDLE doc: add section on developing tkinter apps. In-Reply-To: <1505149403.52.0.663966414942.issue31421@psf.upfronthosting.co.za> Message-ID: <1505221525.48.0.149274334553.issue31421@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3509 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 09:33:38 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Tue, 12 Sep 2017 13:33:38 +0000 Subject: [docs] [issue31427] Proposed addition to Windows FAQ In-Reply-To: <1505217628.46.0.613932244118.issue31427@psf.upfronthosting.co.za> Message-ID: <1505223218.31.0.138801669318.issue31427@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Is this only a problem with 3.6.0 or >= 3.6.0? ---------- components: +Windows nosy: +Mariatta, paul.moore, steve.dower, tim.golden, zach.ware stage: -> needs patch _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 09:45:02 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Tue, 12 Sep 2017 13:45:02 +0000 Subject: [docs] [issue31421] IDLE doc: add section on developing tkinter apps. In-Reply-To: <1505149403.52.0.663966414942.issue31421@psf.upfronthosting.co.za> Message-ID: <1505223902.32.0.857361222893.issue31421@psf.upfronthosting.co.za> Terry J. Reedy added the comment: New changeset 4d7807ab9ad9f990e948d250bbb390b23a790764 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.6': [3.6] bpo-31421: Document how IDLE runs tkinter programs. (GH-3513) (#3514) https://github.com/python/cpython/commit/4d7807ab9ad9f990e948d250bbb390b23a790764 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 09:45:52 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Tue, 12 Sep 2017 13:45:52 +0000 Subject: [docs] [issue31421] IDLE doc: add section on developing tkinter apps. In-Reply-To: <1505149403.52.0.663966414942.issue31421@psf.upfronthosting.co.za> Message-ID: <1505223952.6.0.497471468138.issue31421@psf.upfronthosting.co.za> Changes by Terry J. Reedy : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 12:08:39 2017 From: report at bugs.python.org (Christian Heimes) Date: Tue, 12 Sep 2017 16:08:39 +0000 Subject: [docs] [issue31432] Documention for CERT_OPTIONAL is misleading Message-ID: <1505232519.67.0.963615295738.issue31432@psf.upfronthosting.co.za> New submission from Christian Heimes: >From #31431, the documentation of CERT_OPTIONAL and CERT_REQUIRED are misleading. For client side sockets, CERT_OPTIONAL does **NOT** mean that no certificates will be required from the other side of the socket connection. The server **must** provide a cert and the client **requires** the cert to be valid and trusted by trusted CA. Internally, the _ssl.c extension module sets: CERT_NONE: SSL_CTX_set_verify(ctx, SSL_VERIFY_NONE, verify_cb) CERT_OPTIONAL: SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER, verify_cb) CERT_REQUIRED: SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, verify_cb) According to https://www.openssl.org/docs/man1.0.2/ssl/SSL_CTX_set_verify.html SSL_VERIFY_FAIL_IF_NO_PEER_CERT is ignored in client mode. This means for client-side sockets: CERT_NONE: server must provide any cert, verification error does not prevent handshake CERT_OPTIONAL == CERT_REQUIRED CERT_REQUIRED: server must provide a correct certificate that is trusted by a root CA in the trust store of the client For server-side sockets: CERT_NONE: Don't ask client for a TLS client auth cert CERT_OPTIONAL: Ask client for a TLS client auth cert, don't fail if the client does not provide one. IIRC the cert must validate and be trusted by a CA in the trust store of the server (TODO: verify this) CERT_REQUIRED: Ask client for TLS client auth cert, fail if client does not provide a certificate during the handshake. ---------- assignee: docs at python components: Documentation, SSL messages: 301970 nosy: christian.heimes, docs at python priority: normal severity: normal status: open title: Documention for CERT_OPTIONAL is misleading type: behavior versions: Python 2.7, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 12:08:56 2017 From: report at bugs.python.org (Christian Heimes) Date: Tue, 12 Sep 2017 16:08:56 +0000 Subject: [docs] [issue31432] Documention for CERT_OPTIONAL is misleading In-Reply-To: <1505232519.67.0.963615295738.issue31432@psf.upfronthosting.co.za> Message-ID: <1505232536.24.0.898379873972.issue31432@psf.upfronthosting.co.za> Changes by Christian Heimes : ---------- nosy: +alex, dstufft, janssen _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 12:26:53 2017 From: report at bugs.python.org (Steve Dower) Date: Tue, 12 Sep 2017 16:26:53 +0000 Subject: [docs] [issue31427] Proposed addition to Windows FAQ In-Reply-To: <1505217628.46.0.613932244118.issue31427@psf.upfronthosting.co.za> Message-ID: <1505233613.29.0.997914270764.issue31427@psf.upfronthosting.co.za> Steve Dower added the comment: This is a problem with 3.5 and later running on Windows 8.1 or earlier without all Windows Updates being installed. It can happen for two reasons: * not using the official installer (most common) * random failure in the official installer (rare) Installing KB2999226 is a good start, though it will likely trigger another Windows Update to get the latest version. Windows 10 is not affected. I'm in favor of adding this to the FAQ. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 12:41:44 2017 From: report at bugs.python.org (Christian Heimes) Date: Tue, 12 Sep 2017 16:41:44 +0000 Subject: [docs] [issue31432] Documention for CERT_OPTIONAL is misleading In-Reply-To: <1505232519.67.0.963615295738.issue31432@psf.upfronthosting.co.za> Message-ID: <1505234504.57.0.52506597803.issue31432@psf.upfronthosting.co.za> Christian Heimes added the comment: PS: OpenSSL still validates the chain when SSL_VERIFY_NONE is set. In that mode OpenSSL just does not abort the handshake when an error occurs. OpenSSL keeps the last verification error around, see #31372. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 13:10:01 2017 From: report at bugs.python.org (Ned Deily) Date: Tue, 12 Sep 2017 17:10:01 +0000 Subject: [docs] [issue31395] Docs Downloads are 404s In-Reply-To: <1504881220.48.0.699097747984.issue31395@psf.upfronthosting.co.za> Message-ID: <1505236201.41.0.834029964207.issue31395@psf.upfronthosting.co.za> Ned Deily added the comment: Thanks for the report. After looking into this a bit, the URLs you are using are those from the daily docs build, the latest doc changes checked into each branch. As best I can tell, the part of the daily build that makes the downloadable files has been broken, probably for some time and most likely due to trying to use an older version of TeX Live. Until we can get the server upgraded, you can download the docs that reflect the source as of the 3.6.2 release. You can find these linked to on the docs download page: https://www.python.org/doc/versions/ I've reopened the original pythondotorg issue since it turns out to be a server issue. ---------- resolution: -> third party stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 17:18:14 2017 From: report at bugs.python.org (Eryk Sun) Date: Tue, 12 Sep 2017 21:18:14 +0000 Subject: [docs] [issue31427] Proposed addition to Windows FAQ In-Reply-To: <1505217628.46.0.613932244118.issue31427@psf.upfronthosting.co.za> Message-ID: <1505251094.1.0.200880480237.issue31427@psf.upfronthosting.co.za> Eryk Sun added the comment: The FAQ could instead link to the more recent update, KB3118401. https://support.microsoft.com/en-us/help/3118401/update-for-universal-c-runtime-in-windows ---------- nosy: +eryksun _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 17:18:40 2017 From: report at bugs.python.org (Eryk Sun) Date: Tue, 12 Sep 2017 21:18:40 +0000 Subject: [docs] [issue31427] Proposed addition to Windows FAQ In-Reply-To: <1505217628.46.0.613932244118.issue31427@psf.upfronthosting.co.za> Message-ID: <1505251120.09.0.522229139959.issue31427@psf.upfronthosting.co.za> Changes by Eryk Sun : ---------- versions: +Python 3.5 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 23:24:06 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 13 Sep 2017 03:24:06 +0000 Subject: [docs] [issue31394] Ellipsis_token.type != token.ELLIPSIS In-Reply-To: <1504862671.67.0.693274521398.issue31394@psf.upfronthosting.co.za> Message-ID: <1505273046.27.0.370962262676.issue31394@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 5f8fbf917ebf2398aa75a1f271617e2e50ab7c88 by Mariatta (Aivar Annamaa) in branch 'master': bpo-31394: Clarify documentation about token type attribute (GH-3469) https://github.com/python/cpython/commit/5f8fbf917ebf2398aa75a1f271617e2e50ab7c88 ---------- nosy: +Mariatta _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 23:29:21 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 13 Sep 2017 03:29:21 +0000 Subject: [docs] [issue31394] Ellipsis_token.type != token.ELLIPSIS In-Reply-To: <1504862671.67.0.693274521398.issue31394@psf.upfronthosting.co.za> Message-ID: <1505273361.97.0.457841914442.issue31394@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- pull_requests: +3525 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 23:43:06 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 13 Sep 2017 03:43:06 +0000 Subject: [docs] [issue31394] Ellipsis_token.type != token.ELLIPSIS In-Reply-To: <1504862671.67.0.693274521398.issue31394@psf.upfronthosting.co.za> Message-ID: <1505274186.49.0.550117597219.issue31394@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 5513e888e9a742156c35ce7ab628407d8cf9e1f0 by Mariatta in branch '3.6': [3.6] bpo-31394: Clarify documentation about token type attribute (GH-3469) (GH-3525) https://github.com/python/cpython/commit/5513e888e9a742156c35ce7ab628407d8cf9e1f0 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 12 23:51:28 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 13 Sep 2017 03:51:28 +0000 Subject: [docs] [issue31394] Ellipsis_token.type != token.ELLIPSIS In-Reply-To: <1504862671.67.0.693274521398.issue31394@psf.upfronthosting.co.za> Message-ID: <1505274688.18.0.461387807371.issue31394@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- pull_requests: +3526 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 00:00:02 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 13 Sep 2017 04:00:02 +0000 Subject: [docs] [issue31394] Ellipsis_token.type != token.ELLIPSIS In-Reply-To: <1504862671.67.0.693274521398.issue31394@psf.upfronthosting.co.za> Message-ID: <1505275202.68.0.294437369122.issue31394@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset ea0f7c26cef4550bf4db1a9bae17d41b79ab7c0d by Mariatta in branch 'master': bpo-31394: Make tokenize.rst PEP 8-compliant (GH-3526) https://github.com/python/cpython/commit/ea0f7c26cef4550bf4db1a9bae17d41b79ab7c0d ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 00:04:26 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 13 Sep 2017 04:04:26 +0000 Subject: [docs] [issue31394] Ellipsis_token.type != token.ELLIPSIS In-Reply-To: <1504862671.67.0.693274521398.issue31394@psf.upfronthosting.co.za> Message-ID: <1505275466.66.0.914297949616.issue31394@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 01:13:38 2017 From: report at bugs.python.org (Christian Heimes) Date: Wed, 13 Sep 2017 05:13:38 +0000 Subject: [docs] [issue31432] Documention for CERT_OPTIONAL is misleading In-Reply-To: <1505232519.67.0.963615295738.issue31432@psf.upfronthosting.co.za> Message-ID: <1505279618.69.0.534348432163.issue31432@psf.upfronthosting.co.za> Changes by Christian Heimes : ---------- keywords: +patch pull_requests: +3527 stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 04:38:27 2017 From: report at bugs.python.org (Benjamin Wohlwend) Date: Wed, 13 Sep 2017 08:38:27 +0000 Subject: [docs] [issue31441] Descriptor example in documentation is confusing, possibly wrong Message-ID: <1505291907.9.0.809761592922.issue31441@psf.upfronthosting.co.za> New submission from Benjamin Wohlwend: The first descriptor example in the descriptor docs (https://docs.python.org/3/howto/descriptor.html#descriptor-example) stores the value on the descriptor instance, which is shared among all MyClass instances. This leads to surprising (and arguably buggy from a user perspective) behaviour: m1, m2 = MyClass(), MyClass() m1.x = 5 m2.x = 10 print(m1.x, m2.x) >>> 10 10 I'm not sure how this could be fixed without making the example much more complicated (e.g. by introducing a "values" weakref dictionary on the descriptor instance). Maybe pointing this behaviour out in the docs could be enough, although I don't see any useful use case for a class that has this behaviour. ---------- assignee: docs at python components: Documentation messages: 302033 nosy: Benjamin Wohlwend, docs at python priority: normal severity: normal status: open title: Descriptor example in documentation is confusing, possibly wrong _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 05:03:10 2017 From: report at bugs.python.org (Romuald Brunet) Date: Wed, 13 Sep 2017 09:03:10 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation Message-ID: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> New submission from Romuald Brunet: In the "Defining New Types documentation" basics about tp_new -> PyType_GenericNew, the doc states: > We?d like to just assign this to the tp_new slot, but we can?t, for > portability sake, On some platforms or compilers, we can?t statically > initialize a structure member with a function defined in another C > module, so, instead, we?ll assign the tp_new slot in the module > initialization function just before calling PyType_Ready(): But looking a python C code itself [1] does seem to do this. So I'm guessing that part of the documentation is now irrelevant and the example could just assign PyType_GenericNew to tp_new. [1] https://github.com/python/cpython/blob/2ebc5ce42a8a9e047e790aefbf9a94811569b2b6/Objects/listobject.c#L2733 ---------- assignee: docs at python components: Documentation messages: 302038 nosy: Romuald, docs at python priority: normal severity: normal status: open title: Possibly out of date C extension documentation type: enhancement _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 09:09:13 2017 From: report at bugs.python.org (R. David Murray) Date: Wed, 13 Sep 2017 13:09:13 +0000 Subject: [docs] [issue31441] Descriptor example in documentation is confusing, possibly wrong In-Reply-To: <1505291907.9.0.809761592922.issue31441@psf.upfronthosting.co.za> Message-ID: <1505308153.33.0.117113013803.issue31441@psf.upfronthosting.co.za> R. David Murray added the comment: Here is a not-much-more-complicated version that solves the problem. It is probably worth changing as the revised example makes clear the difference between self and obj, which is an important distinction. class RevealAccess(object): """A data descriptor that sets and returns values normally and prints a message logging their access. """ def __init__(self, initval=None, name='var'): self.attrname = '_' + str(random.random())[2:] self.name = name self.initval = initval def __get__(self, obj, objtype): print('Retrieving', self.name) return getattr(obj, self.attrname, self.initval) def __set__(self, obj, val): print('Updating', self.name) setattr(obj, self.attrname, val) class MyClass: x = RevealAccess(10, 'var "x"') y = 5 ---------- nosy: +r.david.murray, rhettinger _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 09:24:39 2017 From: report at bugs.python.org (Amaury Forgeot d'Arc) Date: Wed, 13 Sep 2017 13:24:39 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1505309079.6.0.84106376044.issue31443@psf.upfronthosting.co.za> Amaury Forgeot d'Arc added the comment: On Windows at least: I think "another C module" should be understood as "another DLL or executable". A user extension module is a different DLL from the core Python, so the advice is still valid. ---------- nosy: +amaury.forgeotdarc _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 11:52:20 2017 From: report at bugs.python.org (Steve Johnson) Date: Wed, 13 Sep 2017 15:52:20 +0000 Subject: [docs] [issue31454] Include "import as" in documentation Message-ID: <1505317940.24.0.986048971751.issue31454@psf.upfronthosting.co.za> New submission from Steve Johnson: I was wondering if you could do something like fiblib = import fibo or import fibo as fiblib, and low and behold, the "as" variant worked. I find this very useful, and thought it should be part of your documentation on "import" ---------- assignee: docs at python components: Documentation messages: 302083 nosy: docs at python, svenyonson priority: normal severity: normal status: open title: Include "import as" in documentation type: enhancement versions: Python 2.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 12:42:44 2017 From: report at bugs.python.org (R. David Murray) Date: Wed, 13 Sep 2017 16:42:44 +0000 Subject: [docs] [issue31454] Include "import as" in documentation In-Reply-To: <1505317940.24.0.986048971751.issue31454@psf.upfronthosting.co.za> Message-ID: <1505320964.2.0.910619615656.issue31454@psf.upfronthosting.co.za> R. David Murray added the comment: Where do you find that it is not documented that you would expect it to be? Because 'import' 'as' is certainly documented. ---------- nosy: +r.david.murray _______________________________________ Python tracker _______________________________________ From damyen441 at gmail.com Tue Sep 5 13:35:19 2017 From: damyen441 at gmail.com (=?UTF-8?B?0J3QuNC60L7Qu9Cw0Lkg0KLQtdGA0LXRidC10L3QutC+?=) Date: Tue, 5 Sep 2017 20:35:19 +0300 Subject: [docs] Can't download official documentaion Message-ID: Hello. I'am can't download official documentation from Download Python 3.6.2 Documentation -------------- next part -------------- An HTML attachment was scrubbed... URL: From mayanksuman at live.com Wed Sep 6 00:47:07 2017 From: mayanksuman at live.com (Mayank Suman) Date: Wed, 6 Sep 2017 04:47:07 +0000 Subject: [docs] Documentation Download not working. Message-ID: Hi, The documentation download on the page https://docs.python.org/3/download.html Download ? Python 3.6.2 documentation To download an archive containing all the documents for this version of Python in one of various formats, follow one of links in this table. The numbers in the table ... docs.python.org and https://docs.python.org/2/download.html Download ? Python 2.7.14rc1 documentation To download an archive containing all the documents for this version of Python in one of various formats, follow one of links in this table. The numbers in the table ... docs.python.org is not working. Please look into it. With Regards, Mayank Suman -------------- next part -------------- An HTML attachment was scrubbed... URL: From sukhanov.alexander at gmail.com Wed Sep 6 02:37:20 2017 From: sukhanov.alexander at gmail.com (=?UTF-8?B?0JDQu9C10LrRgdCw0L3QtNGAINCh0YPRhdCw0L3QvtCy?=) Date: Wed, 6 Sep 2017 09:37:20 +0300 Subject: [docs] 2.7 Documentation unawailable Message-ID: Dear sir/madam I was trying to access 2.7 python documentation via links on page https://docs.python.org/2/download.html . However, any possible option resulted in http error 404. Best regards, Sukhanov Alexander -------------- next part -------------- An HTML attachment was scrubbed... URL: From ScottD.Lessard at ge.com Wed Sep 6 08:26:50 2017 From: ScottD.Lessard at ge.com (Lessard, Scott (GE Power)) Date: Wed, 6 Sep 2017 12:26:50 +0000 Subject: [docs] Python 3.6.2 Doc Download not working Message-ID: I was trying to download the PDF and EPUB versions of the Python 3.6.2 Documentation, but the links seem to be broken. I get a '404 Not Found' error. from https://docs.python.org/3/download.html https://docs.python.org/3/archives/python-3.6.2-docs-pdf-letter.zip https://docs.python.org/3/archives/python-3.6.2-docs.epub Thanks, Scott Lessard -------------- next part -------------- An HTML attachment was scrubbed... URL: From amanda.osvaldo.tm at gmail.com Wed Sep 6 15:21:53 2017 From: amanda.osvaldo.tm at gmail.com (Amanda Osvaldo) Date: Wed, 06 Sep 2017 16:21:53 -0300 Subject: [docs] Error 404 Message-ID: <1504725713.3840.1.camel@gmail.com> Why I can't download Python documentation anymore ? I'm receiving the message: 404 Not Foundnginx https://docs.python.org/3/archives/python-3.6.2-docs-pdf-a4.zip https://docs.python.org/3/download.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From todorovic.dusan89 at gmail.com Wed Sep 6 16:19:27 2017 From: todorovic.dusan89 at gmail.com (=?UTF-8?B?RHXFoWFuIFRvZG9yb3ZpxIc=?=) Date: Wed, 6 Sep 2017 22:19:27 +0200 Subject: [docs] Python docs - 404 Not Found Message-ID: Hello, I am trying to download Python 3 documentation but keep getting 404 Not Found Error. url: https://docs.python.org/3/archives/python-3.6.2-docs.epub It's the same with dev (3.7.0a0) verison. Could you please take a look or send me .epub version somehow ? Thanks, Dusan -------------- next part -------------- An HTML attachment was scrubbed... URL: From ben at adversary.org Wed Sep 6 17:58:06 2017 From: ben at adversary.org (Ben McGinnes) Date: Thu, 7 Sep 2017 07:58:06 +1000 Subject: [docs] Python 3.6.2 downloadable archives missing Message-ID: <20170906215806.zdyh25h4nr7uloaa@adversary.org> Hello, I'm getting 404 errors for all the archive links, both zips (including epub) and tarballs, for the current September 6 update. Regards, Ben -- | Ben McGinnes | Adversarial Press | Author and Publisher | | Writer, Trainer, Systems Administrator, Developer, ICT Consultant | | Twitter: @benmcginnes (personal) | @AdversaryPub (publishing) | | Web: http://www.adversary.org/ http://publishing.adversary.org/ | | ----------------------------------------------------------------- | | GPG Made Easy (GPGME) Python 3 API Maintainer, GNU Privacy Guard | | GPG key: 0x321E4E2373590E5D http://www.adversary.org/ben-key.asc | | GPG key fpr: DB47 24E6 FA42 86C9 2B4E 55C4 321E 4E23 7359 0E5D | | https://www.gnupg.org/ https://securetheinternet.org/ | | ----------------------------------------------------------------- | -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 659 bytes Desc: not available URL: From xchemariox at gmail.com Wed Sep 6 19:17:36 2017 From: xchemariox at gmail.com (Mario Alvarez) Date: Wed, 6 Sep 2017 18:17:36 -0500 Subject: [docs] https://docs.python.org/3/download.html Message-ID: I?m trying to download the documentation but they show me 404 not found error https://docs.python.org/3/archives/python-3.6.2-docs-pdf-letter.zip -------------- next part -------------- An HTML attachment was scrubbed... URL: From omnicrux at msn.com Wed Sep 6 20:18:27 2017 From: omnicrux at msn.com (Jerry Cochrane) Date: Thu, 7 Sep 2017 00:18:27 +0000 Subject: [docs] Download PDF Docs 3.6.2 Message-ID: I was attempting to download the 3.6.2 documents on https://docs.python.org/3/download.html but all the links return a 404 error. Is there a location I can go to, that will allow downloading of the PDF document? Thank you, Jerry -------------- next part -------------- An HTML attachment was scrubbed... URL: From sky3 at tut.by Thu Sep 7 00:33:55 2017 From: sky3 at tut.by (Max) Date: Wed, 6 Sep 2017 21:33:55 -0700 Subject: [docs] Documentation is not available for downloading Message-ID: <383344c2-8b4a-bbbe-3ae1-804de893d0b0@tut.by> Hello, I just want to let you know that all? links from the documentation downloading page don't working. The download page is here https://docs.python.org/3/download.html -- ______________ Max -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: emikbamhohpbcmbo.png Type: image/png Size: 14080 bytes Desc: not available URL: From m.ukraintsev at gmail.com Thu Sep 7 02:01:12 2017 From: m.ukraintsev at gmail.com (=?UTF-8?B?0JzQuNGF0LDQuNC7INCj0LrRgNCw0LjQvdGG0LXQsg==?=) Date: Thu, 7 Sep 2017 09:01:12 +0300 Subject: [docs] Can not download docs In-Reply-To: References: Message-ID: Hey! Something wrong with documentation download page. Can not download any of it. Getting 404 Here is the link: https://docs.python.org/3/download.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From mnhtipu at yahoo.com Thu Sep 7 02:57:31 2017 From: mnhtipu at yahoo.com (Mohammad Nazmul Hasan Tipu) Date: Thu, 7 Sep 2017 06:57:31 +0000 (UTC) Subject: [docs] Document link is inactive( 404 Not found) References: <1277611349.4433010.1504767451321.ref@mail.yahoo.com> Message-ID: <1277611349.4433010.1504767451321@mail.yahoo.com> Please look into the captioned matter as we are unable to downloadpython tutorial ? https://docs.python.org/3/download.html Regards Mohammad Nazmul Hasan Tipu Vice President Credit Risk Management LankaBangla Finance Limited Contact No. 8801912062743 -------------- next part -------------- An HTML attachment was scrubbed... URL: From jjlemire at gmail.com Thu Sep 7 08:31:32 2017 From: jjlemire at gmail.com (JJ Lemire) Date: Thu, 7 Sep 2017 08:31:32 -0400 Subject: [docs] Error 404 while downloading documentation Message-ID: nginx gives 404 : on page https://docs.python.org/3/download.html while downloading: https://docs.python.org/3/archives/python-3.6.2-docs-html.tar.bz2 /JL -------------- next part -------------- An HTML attachment was scrubbed... URL: From Brian.Nickels at aecom.com Tue Sep 5 16:33:46 2017 From: Brian.Nickels at aecom.com (Nickels, Brian) Date: Tue, 5 Sep 2017 20:33:46 +0000 Subject: [docs] Links to the Python Docs Message-ID: Hi, Your links are not working to download the Python reference manual. When I try to navigate to them, I end up with a 404 error. Sincerely, Brian Nickels Brian.Nickels at aecom.com Consultant - AECOM Infrastructure Support IBM Corporation 9400 Amberglen Blvd Austin Tx, 78729 (512) 419-5065 office (737) 529-6751 cell -------------- next part -------------- An HTML attachment was scrubbed... URL: From kdeore2 at uic.edu Thu Sep 7 10:38:12 2017 From: kdeore2 at uic.edu (Kunal Deore) Date: Thu, 7 Sep 2017 09:38:12 -0500 Subject: [docs] A bug in documentation error Message-ID: Hi, I am trying to download the documentation in pdf (A4 size) in .zip and it is showing me error like '*404 not found*' Here is the link https://docs.python.org/3/download.html Can you please check Thanks Kunal Deore -------------- next part -------------- An HTML attachment was scrubbed... URL: From guntupallikoushik1999 at gmail.com Thu Sep 7 10:45:28 2017 From: guntupallikoushik1999 at gmail.com (guntupalli koushik) Date: Thu, 7 Sep 2017 20:15:28 +0530 Subject: [docs] about download python3.7 in pdf format Message-ID: sir, sub:-How can we download python3.7 in pdf format . is there is any available video resources in to learn python thanking u, sir, yours faithfully, g.koushik -------------- next part -------------- An HTML attachment was scrubbed... URL: From guntupallikoushik1999 at gmail.com Thu Sep 7 10:46:27 2017 From: guntupallikoushik1999 at gmail.com (guntupalli koushik) Date: Thu, 7 Sep 2017 20:16:27 +0530 Subject: [docs] about download python3.7 in pdf format In-Reply-To: References: Message-ID: sir, sub:-How can we download python3.6 in pdf format . is there is any available video resources in to learn python thanking u, sir, yours faithfully, g.koushik On Thu, Sep 7, 2017 at 8:15 PM, guntupalli koushik < guntupallikoushik1999 at gmail.com> wrote: > sir, > sub:-How can we download python3.7 in pdf format . is there is any > available video resources in to learn python > thanking u, sir, > > > yours faithfully, > > g.koushik > -------------- next part -------------- An HTML attachment was scrubbed... URL: From DiscoMushroom617 at yahoo.com Thu Sep 7 11:15:15 2017 From: DiscoMushroom617 at yahoo.com (D) Date: Thu, 7 Sep 2017 10:15:15 -0500 Subject: [docs] download problem Message-ID: <519e9702-dbb0-b469-facc-4b77e09c4899@yahoo.com> Hi, thanks for providing python for free. But I have a problem... I want to download the 3.6.2 documentation for pdf or the other options from this link: https://docs.python.org/3/download.html But it's not working. When clicking every option to download, it says "404 not found", has a
tag, and "nginix" under that. Any ideas? From zz00822 at mail.ustc.edu.cn Thu Sep 7 11:23:09 2017 From: zz00822 at mail.ustc.edu.cn (zz00822 at mail.ustc.edu.cn) Date: Thu, 07 Sep 2017 23:23:09 +0800 Subject: [docs] 404 not found...unable to download the docs Message-ID: <074hm5g82fb2afuyqj2ryb63.1504797805882@email.android.com> When I try to download the docs from "https://docs.python.org/2/download.html", it shows "404 not found".I am sure that I have already tried VPN linked to several countries like America, Japan, Russia and so on, but nothing works. From zz00822 at mail.ustc.edu.cn Thu Sep 7 11:24:11 2017 From: zz00822 at mail.ustc.edu.cn (zz00822 at mail.ustc.edu.cn) Date: Thu, 07 Sep 2017 23:24:11 +0800 Subject: [docs] (no subject) Message-ID: From n.bruenggel at me.com Thu Sep 7 13:45:47 2017 From: n.bruenggel at me.com (Nils Bruenggel) Date: Thu, 07 Sep 2017 19:45:47 +0200 Subject: [docs] Link broken on the documentation download page Message-ID: Hi, I could not download the documentation, I always got a 404 when trying one of the links: https://docs.python.org/3/archives/python-3.6.2-docs-pdf-letter.zip please fix this. Kind Regards Nils Br?nggel From jsaue003 at fiu.edu Thu Sep 7 15:19:49 2017 From: jsaue003 at fiu.edu (Joseph Sauerland) Date: Thu, 7 Sep 2017 15:19:49 -0400 Subject: [docs] PDF documentation downloads not working? Message-ID: Greetings, Download links don't work at all: https://docs.python.org/3.6/download.html [image: Inline image 1] Just felt you should know. NONE work. Sincerely, Joseph Sauerland -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 37466 bytes Desc: not available URL: From ascholz at mitre.org Thu Sep 7 16:46:08 2017 From: ascholz at mitre.org (Scholz, Arthur K) Date: Thu, 7 Sep 2017 20:46:08 +0000 Subject: [docs] Links to downloadable documentation broken Message-ID: Just FYI, I cannot download the Python docs using the links at: https://docs.python.org/3/download.html (e.g. https://docs.python.org/3/archives/python-3.6.2-docs-pdf-letter.zip) Arthur Arthur K. Scholz, Ph.D. Sr. Signal Processing Engineer Signal Processing | Satellite Navigation 781-271-8115 [cid:image001.png at 01D0A90C.2B5B2680][cid:image002.png at 01D0A90C.2B5B2680][cid:image003.png at 01D0A90C.2B5B2680][cid:image004.png at 01D0A90C.2B5B2680][cid:image005.png at 01D0A90C.2B5B2680] [cid:image006.png at 01D0A90C.2B5B2680] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 589 bytes Desc: image001.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.png Type: image/png Size: 703 bytes Desc: image002.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.png Type: image/png Size: 681 bytes Desc: image003.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image004.png Type: image/png Size: 995 bytes Desc: image004.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image005.png Type: image/png Size: 815 bytes Desc: image005.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image006.jpg Type: image/jpeg Size: 1592 bytes Desc: image006.jpg URL: From crowd42 at riseup.net Thu Sep 7 17:17:01 2017 From: crowd42 at riseup.net (Riseup) Date: Thu, 07 Sep 2017 22:17:01 +0100 Subject: [docs] 404 error Message-ID: <1504819021.8424.0@riseup.net> Hey, Just to notify you a 404 error that I got while trying to download the documentation for python 3.6 (https://docs.python.org/3/archives/python-3.6.2-docs-pdf-a4.tar.bz2), I tried the peub format, HTLM and PDF, same problem as you can see in the screenshot below. Best regards -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 2017-09-07-221200_1366x768_scrot.png Type: image/png Size: 50458 bytes Desc: not available URL: From arwari at gmail.com Thu Sep 7 18:49:21 2017 From: arwari at gmail.com (Sunil Arwari) Date: Thu, 7 Sep 2017 18:49:21 -0400 Subject: [docs] 404 errors Message-ID: Hi, Thanks for your work in maintaining the python documentation. It seems like all of the links on the page https://docs.python.org/2.7/download.html are returning 404 errors. Is it possible for someone to check if these docs are up? Thanks! Sunil -------------- next part -------------- An HTML attachment was scrubbed... URL: From rajsahil.tech at gmail.com Fri Sep 8 02:05:15 2017 From: rajsahil.tech at gmail.com (Raj Sahil) Date: Fri, 8 Sep 2017 11:35:15 +0530 Subject: [docs] Error in downloading Message-ID: Hi, Unable to download documentation. PDF, E PUB, HTML and Plain Text file shows same message - 404 Not Found. Kindly help. Thank You -------------- next part -------------- An HTML attachment was scrubbed... URL: From ruthhuijgens at gmail.com Fri Sep 8 06:45:39 2017 From: ruthhuijgens at gmail.com (Ruth Huijgens) Date: Fri, 8 Sep 2017 12:45:39 +0200 Subject: [docs] pyhton docs not accessible Message-ID: Hello I already mailed a few days ago but the file links on https://docs.python.org/3/download.html are still corrupted. Can this please be fixed? BR Ruth From jbennett at birkdalehigh.co.uk Fri Sep 8 10:20:38 2017 From: jbennett at birkdalehigh.co.uk (Mr J. Bennett) Date: Fri, 8 Sep 2017 14:20:38 +0000 Subject: [docs] 404 from nginx for all documentation download packages Message-ID: <212A13E4407D4544B913AC46ECCC1C2C0108744A@BHS-MAIL01.BHS.INTERNAL> Hello, I've tried all the links on https://docs.python.org/3/download.html and seem to be met with 404 pages. Specifically I'm after the HTML tar.bz2 Mr J. Bennett ICT Technician Birkdale High School Windy Harbour Road Southport PR8 3DT Tel: 01704 577253 Fax: 01704 570451 ________________________________ This email and any attachments are confidential and intended solely for the recipient(s) to whom it is addressed. It may contain privileged and confidential information that is exempt from disclosure under English law and if you are not an intended recipient you must not copy, distribute or take any action in reliance on it. If you have received this e-mail in error or have any concerns, please notify us immediately by e-mail itsupport at birkdalehigh.co.uk or telephone 01704 577253. Birkdale High School has students with ages ranging from 11 to 16 years old. If you think this e-mail is from a student then please show due sensitivity to their age in your reply, observing all current regulations in respect to communicating with a minor. This e-mail does not represent the views of Birkdale High School. The school, its staff and students cannot be held responsible for any views, words, comments or files contained within this message. Internet communications are not secure and therefore Birkdale High School does not accept legal responsibility for the contents of this message. Although reasonable measures have been implemented to protect this email from viruses, Birkdale High School cannot accept responsibility for any loss or damage arising from the use of this email or attachments. Please be aware that Birkdale High School may intercept incoming and outgoing e-mail communications as part of our monitoring process. Please consider the environment before printing this e-mail. ________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: From Darren.Watson at nexusrental.co.uk Fri Sep 8 10:10:15 2017 From: Darren.Watson at nexusrental.co.uk (Darren Watson) Date: Fri, 8 Sep 2017 14:10:15 +0000 Subject: [docs] Download Documents Message-ID: <5B64B29FF1938F449E142A43F83FF0F3C21A11BA@NEXUS-MAIL.NEXUSRENTAL.local> Hi None of the downloads appear to be working on the Docs pages: https://docs.python.org/3/archives/python-3.6.2-docs-pdf-a4.zip Thanks Darren Watson IT DevOps Engineer Nexus Vehicle Rental Nexus House 2 Owlcotes Court 141 Richardshaw Lane Leeds, LS28 6AA www.nexusrental.co.uk [top11] [cid:image002.jpg at 01D2971F.1224D5F0] Quality & Security - We have certifications in the ISO 9001:2008 Quality Management and ISO 27001:2013 Information Security Management standards. Customer Service - Winner of the 'Best Customer Focus' award at the Best Business Awards 2017. Innovation - Winner of the 'Best Innovation' award at the Best Business Awards 2017. Professional Development - Named in the 'Centrica Top 100 Apprenticeship Employer List' 2016. This Message and any attachments are for the named recipient's use only. They may contain confidential, proprietary or legally privileged information. No confidentiality or privilege is waived or lost by any wrong transmission. If you are not the intended recipient or have received this message in error, please delete it and all copies of it from your system, destroy any hard copies of it and notify the sender immediately. You must not directly or indirectly, use, disclose, distribute, print or copy any part of this message or any attachments if you are not the intended recipient. Any views expressed in this message or any attachments are those of the individual sender, except where otherwise stated and the sender is authorised to state them to be the views of any such entity. Nexus Vehicle Rental is a trading name of Nexus Vehicle Management Ltd, a company registered in England and Wales. Registration. No. 03833617. Registered office: Nexus House, 2 Owlcotes Court, 141 Richardshaw Lane, Leeds, LS28 6AA. UK VAT No. 228 5101 30. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 4847 bytes Desc: image001.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 5396 bytes Desc: image002.jpg URL: From chartoin at gmail.com Fri Sep 8 11:27:35 2017 From: chartoin at gmail.com (Char Toin) Date: Fri, 8 Sep 2017 11:27:35 -0400 Subject: [docs] 404 error - Download links for documentation Message-ID: Hi, I get 404 error for all links in the download section. Few links for reference: https://docs.python.org/3/archives/python-3.6.2-docs-html.tar.bz2 https://docs.python.org/2/archives/python-2.7.14rc1-docs-html.tar.bz2 Regards, Chartoin -------------- next part -------------- An HTML attachment was scrubbed... URL: From hchasens at gmail.com Fri Sep 8 14:43:19 2017 From: hchasens at gmail.com (Xeon Unknown) Date: Fri, 8 Sep 2017 14:43:19 -0400 Subject: [docs] Missing Links 404s Message-ID: https://docs.python.org/2.7/download.html I'm on HTTPS and im getting 404s when i try to download any 2.7 documentation. Useful for airplanes and offline. Thx -- >From Hunter Chasens -------------- next part -------------- An HTML attachment was scrubbed... URL: From akiika61 at gmail.com Fri Sep 8 14:44:58 2017 From: akiika61 at gmail.com (Aki Ayusman) Date: Sat, 9 Sep 2017 00:14:58 +0530 Subject: [docs] Error in Documentation downloading Message-ID: Hello Sir, When I'm trying to download the documents it showing "404 Not Found". Please help me. Thanks & regards Ayush -------------- next part -------------- An HTML attachment was scrubbed... URL: From rhinerfeldnyc at gmail.com Fri Sep 8 14:46:05 2017 From: rhinerfeldnyc at gmail.com (Richard Hinerfeld) Date: Fri, 8 Sep 2017 14:46:05 -0400 Subject: [docs] Error when trying to download Python 3.6.2 Documentation Message-ID: When trying to download Python 3.6.2 Documentation I receive the following error: 404 Not Found nginx -------------- next part -------------- An HTML attachment was scrubbed... URL: From mvlbvry at yahoo.com Fri Sep 8 17:27:28 2017 From: mvlbvry at yahoo.com (Michael Saliba) Date: Fri, 8 Sep 2017 21:27:28 +0000 (UTC) Subject: [docs] Downloads page for documentation isn't working. References: <1920010877.5672862.1504906048709.ref@mail.yahoo.com> Message-ID: <1920010877.5672862.1504906048709@mail.yahoo.com> Hello, ??? The Downloads page (https://docs.python.org/3/download.html) returns a '404 Not Found' for all of the links provided. ??? Thanks, hope y'all have it up soon! :D -------------- next part -------------- An HTML attachment was scrubbed... URL: From 28.02.98.shohin at gmail.com Fri Sep 8 18:42:54 2017 From: 28.02.98.shohin at gmail.com (cuberoot) Date: Sat, 9 Sep 2017 01:42:54 +0300 Subject: [docs] Python PDF documentation is absent Message-ID: Hello! An attempt to download Python 3 Reference Manual from here results into 404 error. Would you please fix that? Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: From john.muirhead at btinternet.com Sat Sep 9 03:05:00 2017 From: john.muirhead at btinternet.com (John Muirhead) Date: Sat, 9 Sep 2017 08:05:00 +0100 Subject: [docs] Error While Downloading Python 3.6.2 Documentation Message-ID: <06471CAB-F52C-4BD8-BCE2-22EDA5D298B8@btinternet.com> Dear Sir or Madam I tried to download a copy of the 3.6.2 documentation, however, clicking on the links in the Python 3.6.2 documentation download produces a 404 Not Found error. Please see screenshots below. My computer is a Mac Pro running on Mac OS Sierra 10.12.6 Regards John Muirhead 01564 771341 19 Buckminster Drive Solihull B93 8PG UK -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Download ? Python 3.6.2 documentation.pdf Type: application/pdf Size: 47097 bytes Desc: not available URL: -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 404 Not Found.pdf Type: application/pdf Size: 21226 bytes Desc: not available URL: -------------- next part -------------- An HTML attachment was scrubbed... URL: From bodik75 at ukr.net Sat Sep 9 11:49:51 2017 From: bodik75 at ukr.net (Bohdan Dmytriv) Date: Sat, 9 Sep 2017 18:49:51 +0300 Subject: [docs] 404 when trying to download docs Message-ID: Hi! When I'm trying to download python3 docs (https://docs.python.org/3/download.html), I get 404. Help me, if you can. Thanks in advance. Bohdan From c9tyndall at gmail.com Sat Sep 9 15:33:28 2017 From: c9tyndall at gmail.com (C Tyndall) Date: Sat, 9 Sep 2017 12:33:28 -0700 Subject: [docs] Download Python 3.6.2 Documentation Message-ID: https://docs.python.org/3/download.html PDF (US-Letter paper size) Download (ca. 13 MB) Download (ca. 13 MB) Both links are broken. https://docs.python.org/3/archives/python-3.6.2-docs-pdf-letter.zip [image: Inline image 1] -- Carl Tyndall 360-701-5992 c9tyndall at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 3200 bytes Desc: not available URL: From msilva at marlonsilva.eti.br Sat Sep 9 17:48:09 2017 From: msilva at marlonsilva.eti.br (msilva at marlonsilva.eti.br) Date: Sat, 9 Sep 2017 18:48:09 -0300 Subject: [docs] Download Error - Page 404 Message-ID: <1011d4c18a0fae1191ccefee85d999f5.squirrel@mail.marlonsilva.eti.br> Good Night, When I try download the documentation the site return error 404. Thanks. From r7lamb at gmail.com Sat Sep 9 22:48:05 2017 From: r7lamb at gmail.com (Reece Lamb) Date: Sun, 10 Sep 2017 02:48:05 +0000 Subject: [docs] 404 Error on Python 3.6 Docs Download Message-ID: Hi, I am trying to download the Python documentation (in any format) for 3.6...but each download link brings me to a '404 - Error' page. Could you please point me to where I can find this information for offline viewing? Thank you! Reece -------------- next part -------------- An HTML attachment was scrubbed... URL: From ayan59dutta at gmail.com Sun Sep 10 01:38:46 2017 From: ayan59dutta at gmail.com (Ayan Dutta) Date: Sun, 10 Sep 2017 11:08:46 +0530 Subject: [docs] Cannot download Python 3.6.2 documentation In-Reply-To: References: Message-ID: Sir, All the download links provided in the following page shows "404 not found" on clicking. Please look into it. https://docs.python.org/3/download.html With regards, Ayan Dutta -------------- next part -------------- An HTML attachment was scrubbed... URL: From vivek.chandan at hotmail.com Sun Sep 10 05:37:45 2017 From: vivek.chandan at hotmail.com (vivek chandan) Date: Sun, 10 Sep 2017 09:37:45 +0000 Subject: [docs] 404 page while downloading Documentation Message-ID: Have a look please. Getting 404 while trying to download documentation https://docs.python.org/3/archives/python-3.6.2-docs-pdf-letter.zip Sent from Mail for Windows 10 -------------- next part -------------- An HTML attachment was scrubbed... URL: From th.bampouris at gmail.com Sun Sep 10 09:28:30 2017 From: th.bampouris at gmail.com (Theoklitos Bampouris) Date: Sun, 10 Sep 2017 16:28:30 +0300 Subject: [docs] Documentation Error 404 Message-ID: <13d55af8-b1cd-e292-8328-27898385489c@gmail.com> There is an error "404 Not Found" while clicking the links in Download Python 3.6.2 Documentation page. Please fix it! Sincerely, Theoklitos Bampouris From peter_milner at btinternet.com Sun Sep 10 12:38:08 2017 From: peter_milner at btinternet.com (Peter) Date: Sun, 10 Sep 2017 16:38:08 +0000 Subject: [docs] Broken link on download for documentation for 3.6.2. Found today at 17:37 uk time Message-ID: Hi there, Found a broken link. Regards, Peter Milner -------------- next part -------------- An HTML attachment was scrubbed... URL: From aureshsaxena at gmail.com Sun Sep 10 15:22:41 2017 From: aureshsaxena at gmail.com (Auresh Saxena) Date: Mon, 11 Sep 2017 00:52:41 +0530 Subject: [docs] Python Dcoumentation Message-ID: ?None of the link for downloading the python documentation is working on this page https://docs.python.org/3/download.html Getting 404 error when we try to download the files, please fix the issue a Best regards, Auresh Saxena *aureshsaxena* *+91- 999-9849-428* -------------- next part -------------- An HTML attachment was scrubbed... URL: From akkana at shallowsky.com Sun Sep 10 20:21:10 2017 From: akkana at shallowsky.com (Akkana Peck) Date: Sun, 10 Sep 2017 18:21:10 -0600 Subject: [docs] Broken links for downloading Python docs Message-ID: <20170911002110.umak5idoln2tksuh@shallowsky.com> I'm looking for offline Python documetation I can keep on my tablet for when I don't have a net connection, and found https://docs.python.org/3/download.html But the links there seem to be broken: at least the links to the current epub and the HTML tar file are 404. The 2.7 HTML tar link is broken too. Is downloading not really supported? If there's a better or more approved way to get Python documentation offline (I'd like to keep it available on an Android tablet), I'd love to hear about it. ...Akkana From tymofii.dmytrenko at outlook.com Mon Sep 11 11:45:51 2017 From: tymofii.dmytrenko at outlook.com (Tymofii Dmytrenko) Date: Mon, 11 Sep 2017 15:45:51 +0000 Subject: [docs] Unable to download documentation for 3.6.2 Message-ID: Hi there Tried to download documentation for 3.6.2 with no luck. 3.5 works ok though Tried all sorts of ? PDF, EPUB, HTML? Can you please check what?s wrong? I am getting 404 Thanks Tim Sent from Mail for Windows 10 -------------- next part -------------- An HTML attachment was scrubbed... URL: From rayjhendricks at gmail.com Mon Sep 11 12:05:33 2017 From: rayjhendricks at gmail.com (ray) Date: Mon, 11 Sep 2017 09:05:33 -0700 Subject: [docs] Python 3.6.2 doc download giving a 404 error Message-ID: Hi, I?m getting an error when I try to download this https://docs.python.org/3/archives/python-3.6.2-docs-html.zip Thanks, Ray Hendricks -------------- next part -------------- An HTML attachment was scrubbed... URL: From diego.terzano at gmail.com Mon Sep 11 15:19:57 2017 From: diego.terzano at gmail.com (Diego Terzano) Date: Mon, 11 Sep 2017 15:19:57 -0400 Subject: [docs] Docs Downloads 404 Message-ID: just an FYI, the docs downloads are unavailable.. https://docs.python.org/3.6/download.html Thanks, Diego. -------------- next part -------------- An HTML attachment was scrubbed... URL: From jesse_h_scott at hotmail.com Sun Sep 10 21:41:35 2017 From: jesse_h_scott at hotmail.com (Jesse Scott) Date: Mon, 11 Sep 2017 01:41:35 +0000 Subject: [docs] 404 errors on doc downloads Message-ID: All download links on this page give 404 errors https://docs.python.org/3.6/download.html Jesse H. Scott, III 941-807-6441 Jesse_h_scott at hotmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From frank.secada at gmail.com Tue Sep 12 04:43:45 2017 From: frank.secada at gmail.com (Frank Secada) Date: Tue, 12 Sep 2017 04:43:45 -0400 Subject: [docs] unable to download python 3.6.2 docs Message-ID: Hi, When I click on the links to download the docs for python 3.6.2, I get an error 404, not found. This has been the case for about 3 days, maybe more. The link I try to work from is here. https://docs.python.org/3.6/download.html Could you let me know if this is only a problem for me, or if it's a site problem, when it might be resolved? Thanks Frank Secada -------------- next part -------------- An HTML attachment was scrubbed... URL: From Paul.Mahoney at cavium.com Tue Sep 12 09:42:50 2017 From: Paul.Mahoney at cavium.com (Mahoney, Paul) Date: Tue, 12 Sep 2017 13:42:50 +0000 Subject: [docs] '404 not found' when downloading docs Message-ID: Hello, I'm trying to download the Python 3.6.2 documentation linked here: https://docs.python.org/3/download.html But I'm getting a 404 error for each of the links there. Thanks, Paul -------------- next part -------------- An HTML attachment was scrubbed... URL: From larry.nummy at gmail.com Tue Sep 12 14:42:14 2017 From: larry.nummy at gmail.com (Larry Nummy) Date: Tue, 12 Sep 2017 14:42:14 -0400 Subject: [docs] 404 Python Docs zip files not found Message-ID: Dear Python Support, I tried to download the documentation files in zip format and received the 404 error. Are there other links to these files? Thanks, Larry -------------- next part -------------- An HTML attachment was scrubbed... URL: From dpcook at mcn.org Tue Sep 12 17:03:55 2017 From: dpcook at mcn.org (Daniel Cook) Date: Tue, 12 Sep 2017 14:03:55 -0700 Subject: [docs] 3.6.2 documentation download link broken Message-ID: Trying to download the python docs for 3.6.2. I just get ?404 file not found?. ****************************************************************** We are here to drink beer. We are here to kill war. We are here to laugh at the odds and live our lives so well that death will tremble to take us. Charles Bukowski From roadofsolo at gmail.com Tue Sep 12 18:58:57 2017 From: roadofsolo at gmail.com (EQ mandingo) Date: Tue, 12 Sep 2017 18:58:57 -0400 Subject: [docs] DOCS - (regex error?) Message-ID: https://pypi.python.org/pypi/regex I believe there is an error in the example expression used in the docs. *"In the regex (\s+)(?|(?P[A-Z]+)|(\w+) (?P[0-9]+) there are 2 groups:"* The "(?|" has no closing ")" in the expression, I have not tested this but just seeing this and breaking it down across line breaks makes my brain immediately go to PCRE mindset and say this expression is broken. Am I missing something? (\s+) (?| (?P[A-Z]+) | (\w+) (?P[0-9]+) -Ant -------------- next part -------------- An HTML attachment was scrubbed... URL: From Michael.Steckman at parker.com Tue Sep 12 20:50:27 2017 From: Michael.Steckman at parker.com (Michael Steckman) Date: Tue, 12 Sep 2017 17:50:27 -0700 Subject: [docs] Links are not working at https://docs.python.org/3/download.html Message-ID: fyi Best Regards, Michael Steckman Project Engineer, Sr. Parker Hannifin Corporation Parker Aerospace Group Central Engineering Division Direct (949) 465-4332 FAX (949) 465-4360 mailto:michael.steckman at parker.com www.parker.com -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/gif Size: 8694 bytes Desc: not available URL: From dpcook1130 at gmail.com Wed Sep 13 00:33:30 2017 From: dpcook1130 at gmail.com (Daniel P. Cook) Date: Tue, 12 Sep 2017 21:33:30 -0700 Subject: [docs] 3.6.2 python documentation download not working Message-ID: <4D283046-4A47-4B09-BBCB-48E13B7E5A99@gmail.com> I realize I was not specific about where the problem lies on my earlier email message. From: https://docs.python.org/3.6/download.html the link: https://docs.python.org/3.6/archives/python-3.6.2-docs-html.tar.bz2 is broken. cheers, dan ****************************************************************** We are here to drink beer. We are here to kill war. We are here to laugh at the odds and live our lives so well that death will tremble to take us. Charles Bukowski From vine35792468 at gmail.com Wed Sep 13 06:47:28 2017 From: vine35792468 at gmail.com (Chris Vine) Date: Wed, 13 Sep 2017 11:47:28 +0100 Subject: [docs] Links to python-3.6.2 documentation downloads are broken Message-ID: <20170913114728.0858350b@dell.homenet> Clicking on any "Download" link for python-3.6.2 at https://docs.python.org/3/download.html gives a "404 not found" error. From wassilygraf at googlemail.com Wed Sep 13 11:43:36 2017 From: wassilygraf at googlemail.com (wassily graf) Date: Wed, 13 Sep 2017 21:13:36 +0530 Subject: [docs] 404 error when trying to download the documentation Message-ID: Hi folks, Just wanted to let you know that there is a bug with the download link for the 3.6.2 documentation. I?m getting a 404 error when clicking on any of the zip or tar.bz2 files. But apart from that, keep u the great work! Regards, Wassily From xcbagv at yandex.ru Wed Sep 13 12:22:28 2017 From: xcbagv at yandex.ru (. ..) Date: Wed, 13 Sep 2017 19:22:28 +0300 Subject: [docs] PDF manual on Python 2.7 in A4 does not load Message-ID: <303601505319748@web48o.yandex.ru> An HTML attachment was scrubbed... URL: From 375445814266 at ya.ru Wed Sep 13 13:58:03 2017 From: 375445814266 at ya.ru (=?utf-8?B?0JTQvNC40YLRgNC40Lkg0JrRgNGD0YLQvtC70Y/QvdC+0LI=?=) Date: Wed, 13 Sep 2017 20:58:03 +0300 Subject: [docs] Broken links in the download docs section Message-ID: <144971505325483@web35o.yandex.ru> An HTML attachment was scrubbed... URL: From report at bugs.python.org Wed Sep 13 14:15:08 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 13 Sep 2017 18:15:08 +0000 Subject: [docs] [issue31454] Include "import as" in documentation In-Reply-To: <1505317940.24.0.986048971751.issue31454@psf.upfronthosting.co.za> Message-ID: <1505326508.61.0.977408165321.issue31454@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: import as is documented, so I'm closing this unless you have other concerns. Python 3 docs: https://docs.python.org/3/reference/simple_stmts.html#import ``` If the module name is followed by as, then the name following as is bound directly to the imported module ``` Wording is somewhat different in Python 2.7 docs, but it's there: https://docs.python.org/2.7/reference/simple_stmts.html#the-import-statement Thanks. ---------- nosy: +Mariatta resolution: -> not a bug stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 17:23:00 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 13 Sep 2017 21:23:00 +0000 Subject: [docs] [issue31458] Broken link to Misc/NEWS in What's New page Message-ID: <1505337780.24.0.126904968405.issue31458@psf.upfronthosting.co.za> New submission from Mariatta Wijaya: In "What's new in Python" page: (https://docs.python.org/3.7/whatsnew/index.html) The link to Misc/NEWS is 404. The text is: The ?Changelog? is a HTML version of the file Misc/NEWS which contains all nontrivial changes to Python for the current version. ---------- assignee: docs at python components: Documentation keywords: easy messages: 302117 nosy: Mariatta, docs at python priority: normal severity: normal stage: needs patch status: open title: Broken link to Misc/NEWS in What's New page _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 17:23:23 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 13 Sep 2017 21:23:23 +0000 Subject: [docs] [issue31458] Broken link to Misc/NEWS in What's New page In-Reply-To: <1505337780.24.0.126904968405.issue31458@psf.upfronthosting.co.za> Message-ID: <1505337803.91.0.167097359079.issue31458@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- versions: +Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 17:26:05 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 13 Sep 2017 21:26:05 +0000 Subject: [docs] [issue31458] Broken link to Misc/NEWS in What's New page In-Reply-To: <1505337780.24.0.126904968405.issue31458@psf.upfronthosting.co.za> Message-ID: <1505337965.2.0.27210467617.issue31458@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- keywords: +patch pull_requests: +3547 stage: needs patch -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 19:47:35 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 13 Sep 2017 23:47:35 +0000 Subject: [docs] [issue31458] Broken link to Misc/NEWS in What's New page In-Reply-To: <1505337780.24.0.126904968405.issue31458@psf.upfronthosting.co.za> Message-ID: <1505346455.28.0.818434816751.issue31458@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 1b8f612e1800b6e58472113f4abe8ee7c31f4db7 by Mariatta in branch 'master': bpo-31458: Update Misc/NEWS link in What's New page (GH-3555) https://github.com/python/cpython/commit/1b8f612e1800b6e58472113f4abe8ee7c31f4db7 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 22:03:39 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Thu, 14 Sep 2017 02:03:39 +0000 Subject: [docs] [issue31458] Broken link to Misc/NEWS in What's New page In-Reply-To: <1505337780.24.0.126904968405.issue31458@psf.upfronthosting.co.za> Message-ID: <1505354619.46.0.654302408505.issue31458@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- pull_requests: +3551 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 22:40:34 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Thu, 14 Sep 2017 02:40:34 +0000 Subject: [docs] [issue31458] Broken link to Misc/NEWS in What's New page In-Reply-To: <1505337780.24.0.126904968405.issue31458@psf.upfronthosting.co.za> Message-ID: <1505356834.44.0.0279902990153.issue31458@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 905e4ef86e86dbf8f28b2f6e45af31a6eea84e10 by Mariatta in branch '3.6': [3.6] bpo-31458: Update Misc/NEWS link in What's New page (GH-3555) (GH-3560) https://github.com/python/cpython/commit/905e4ef86e86dbf8f28b2f6e45af31a6eea84e10 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 13 22:40:52 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Thu, 14 Sep 2017 02:40:52 +0000 Subject: [docs] [issue31458] Broken link to Misc/NEWS in What's New page In-Reply-To: <1505337780.24.0.126904968405.issue31458@psf.upfronthosting.co.za> Message-ID: <1505356852.26.0.700862082797.issue31458@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 02:25:59 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Thu, 14 Sep 2017 06:25:59 +0000 Subject: [docs] [issue31441] Descriptor example in documentation is confusing, possibly wrong In-Reply-To: <1505291907.9.0.809761592922.issue31441@psf.upfronthosting.co.za> Message-ID: <1505370359.1.0.111830084493.issue31441@psf.upfronthosting.co.za> Raymond Hettinger added the comment: The example should be modernized to show-off the new __set_name__() part of the descriptor protocol. Computing the name on-demand is better that relying an optional user entered alternate name and having to store that name for future reference. ---------- assignee: docs at python -> _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 12:31:02 2017 From: report at bugs.python.org (Jim Jewett) Date: Thu, 14 Sep 2017 16:31:02 +0000 Subject: [docs] [issue31470] Py_Initialize documentation wrong Message-ID: <1505406662.03.0.797586512068.issue31470@psf.upfronthosting.co.za> New submission from Jim Jewett: Per https://docs.python.org/3/c-api/init.html#initializing-and-finalizing-the-interpreter Py_Initialize() "should be called before using any other Python/C API functions; with the exception of Py_SetProgramName(), Py_SetPythonHome() and Py_SetPath()." (1) I suspect that should be either Py_Initialize() or Py_InitializeEx(). (2) Other functions can also be called first. The ones I notice are: (2a) Py_IsInitialized() wouldn't be useful if you couldn't call it first. (2b) Py_SetStandardStreamEncoding explicitly says it *should* be called before Py_Initialize, if it is called at all. (Probably applies to earlier python versions as well.) ---------- assignee: docs at python components: Documentation messages: 302179 nosy: Jim.Jewett, docs at python priority: normal severity: normal status: open title: Py_Initialize documentation wrong versions: Python 3.6 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 13:22:13 2017 From: report at bugs.python.org (Steve Johnson) Date: Thu, 14 Sep 2017 17:22:13 +0000 Subject: [docs] [issue31454] Include "import as" in documentation In-Reply-To: <1505320964.2.0.910619615656.issue31454@psf.upfronthosting.co.za> Message-ID: Steve Johnson added the comment: In the 2.7 Tutorial, section 6, modules, where it describes the various syntax for using import. > On Sep 13, 2017, at 10:42 AM, R. David Murray wrote: > > > R. David Murray added the comment: > > Where do you find that it is not documented that you would expect it to be? Because 'import' 'as' is certainly documented. > > ---------- > nosy: +r.david.murray > > _______________________________________ > Python tracker > > _______________________________________ ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 13:24:54 2017 From: report at bugs.python.org (Steve Johnson) Date: Thu, 14 Sep 2017 17:24:54 +0000 Subject: [docs] [issue31454] Include "import as" in documentation In-Reply-To: <1505326508.61.0.977408165321.issue31454@psf.upfronthosting.co.za> Message-ID: <90FC55B5-B23C-47FA-B2E6-F91E8FE63B55@svenyonson.com> Steve Johnson added the comment: My suggestion was to include this in the 2.7 tutorial, section 6 (modules) where the various syntax is described for import. Most of us don't dig into the reference until we are trying to find something specific. The tutorial is an excellent place to introduce useful but not obvious features of the language. > On Sep 13, 2017, at 12:15 PM, Mariatta Wijaya wrote: > > > Mariatta Wijaya added the comment: > > import as is documented, so I'm closing this unless you have other concerns. > > Python 3 docs: https://docs.python.org/3/reference/simple_stmts.html#import > ``` > If the module name is followed by as, then the name following as is bound directly to the imported module > ``` > > Wording is somewhat different in Python 2.7 docs, but it's there: https://docs.python.org/2.7/reference/simple_stmts.html#the-import-statement > > Thanks. > > ---------- > nosy: +Mariatta > resolution: -> not a bug > stage: -> resolved > status: open -> closed > > _______________________________________ > Python tracker > > _______________________________________ ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 13:25:03 2017 From: report at bugs.python.org (Nathan Marrow) Date: Thu, 14 Sep 2017 17:25:03 +0000 Subject: [docs] [issue31472] "Emulating callable objects" documentation misleading Message-ID: <1505409903.44.0.981302539758.issue31472@psf.upfronthosting.co.za> New submission from Nathan Marrow: The documentation for emulating callable objects with __call__ seems to imply only positional arguments are supported. For instance, it says __call__ is "object.__call__(self[, args?])" and describes: Called when the instance is ?called? as a function; if this method is defined, x(arg1, arg2, ...) is a shorthand for x.__call__(arg1, arg2, ...). When it should be something like (Not sure exactly what the syntax would be here): "object.__call__(self[, args?] [,**kwargs...])" Called when the instance is ?called? as a function; if this method is defined, x(arg1, arg2, ..., arg3=arg3) is a shorthand for x.__call__(arg1, arg2, ..., arg3=arg3). ---------- assignee: docs at python components: Documentation messages: 302185 nosy: docs at python, nmarrow priority: normal severity: normal status: open title: "Emulating callable objects" documentation misleading versions: Python 2.7, Python 3.3, Python 3.4, Python 3.5, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 13:47:46 2017 From: report at bugs.python.org (R. David Murray) Date: Thu, 14 Sep 2017 17:47:46 +0000 Subject: [docs] [issue31454] Include "import as" in tutorial In-Reply-To: <1505317940.24.0.986048971751.issue31454@psf.upfronthosting.co.za> Message-ID: <1505411266.24.0.28312535836.issue31454@psf.upfronthosting.co.za> R. David Murray added the comment: I agree that it would seem reasonable to add this to section 6.1 of the tutorial, since it mentions both import statement variants and the modules "global symbol table", which are the two concepts involved in import as. Would you like to propose a PR? ---------- resolution: not a bug -> stage: resolved -> needs patch status: closed -> open title: Include "import as" in documentation -> Include "import as" in tutorial _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 13:47:54 2017 From: report at bugs.python.org (R. David Murray) Date: Thu, 14 Sep 2017 17:47:54 +0000 Subject: [docs] [issue31454] Include "import as" in tutorial In-Reply-To: <1505317940.24.0.986048971751.issue31454@psf.upfronthosting.co.za> Message-ID: <1505411274.85.0.0898298823716.issue31454@psf.upfronthosting.co.za> Changes by R. David Murray : ---------- versions: +Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 14:45:10 2017 From: report at bugs.python.org (=?utf-8?q?=C3=89ric_Araujo?=) Date: Thu, 14 Sep 2017 18:45:10 +0000 Subject: [docs] [issue30096] Update examples in abc documentation to use abc.ABC In-Reply-To: <1492545098.58.0.705598301268.issue30096@psf.upfronthosting.co.za> Message-ID: <1505414710.32.0.226050761891.issue30096@psf.upfronthosting.co.za> ?ric Araujo added the comment: > "Best practices" according to whom? Well at least two senior core developers :) See the rationale in #16049 when abc.ABC was first added (with Guido approving that inheritance is nicer for most people). ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 14:55:58 2017 From: report at bugs.python.org (Steve Johnson) Date: Thu, 14 Sep 2017 18:55:58 +0000 Subject: [docs] [issue31454] Include "import as" in tutorial In-Reply-To: <1505411266.24.0.28312535836.issue31454@psf.upfronthosting.co.za> Message-ID: Steve Johnson added the comment: I don't know what a PR is, so I'll let you guys handle it if it is OK with you. > On Sep 14, 2017, at 11:47 AM, R. David Murray wrote: > > > R. David Murray added the comment: > > I agree that it would seem reasonable to add this to section 6.1 of the tutorial, since it mentions both import statement variants and the modules "global symbol table", which are the two concepts involved in import as. > > Would you like to propose a PR? > > ---------- > resolution: not a bug -> > stage: resolved -> needs patch > status: closed -> open > title: Include "import as" in documentation -> Include "import as" in tutorial > > _______________________________________ > Python tracker > > _______________________________________ ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 15:56:23 2017 From: report at bugs.python.org (R. David Murray) Date: Thu, 14 Sep 2017 19:56:23 +0000 Subject: [docs] [issue31454] Include "import as" in tutorial In-Reply-To: <1505317940.24.0.986048971751.issue31454@psf.upfronthosting.co.za> Message-ID: <1505418983.77.0.992549471956.issue31454@psf.upfronthosting.co.za> R. David Murray added the comment: Well, this is all volunteer work. Maybe someone else will feel like doing it :) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 17:54:11 2017 From: report at bugs.python.org (=?utf-8?q?=C3=89ric_Araujo?=) Date: Thu, 14 Sep 2017 21:54:11 +0000 Subject: [docs] [issue31128] Allow pydoc to run with an arbitrary hostname In-Reply-To: <1502060150.4.0.12208327143.issue31128@psf.upfronthosting.co.za> Message-ID: <1505426051.89.0.843801728909.issue31128@psf.upfronthosting.co.za> ?ric Araujo added the comment: New changeset 6a396c9807b1674a24e240731f18e20de97117a5 by ?ric Araujo (Feanil Patel) in branch 'master': bpo-31128: Allow pydoc to bind to arbitrary hostnames (#3011) https://github.com/python/cpython/commit/6a396c9807b1674a24e240731f18e20de97117a5 ---------- nosy: +merwok _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 17:55:24 2017 From: report at bugs.python.org (=?utf-8?q?=C3=89ric_Araujo?=) Date: Thu, 14 Sep 2017 21:55:24 +0000 Subject: [docs] [issue31128] Allow pydoc to run with an arbitrary hostname In-Reply-To: <1502060150.4.0.12208327143.issue31128@psf.upfronthosting.co.za> Message-ID: <1505426124.15.0.431413350943.issue31128@psf.upfronthosting.co.za> ?ric Araujo added the comment: Merged, thanks! ---------- assignee: docs at python -> merwok resolution: -> fixed stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 18:38:31 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Thu, 14 Sep 2017 22:38:31 +0000 Subject: [docs] [issue30085] Discourage operator.__dunder__ functions In-Reply-To: <1492396029.61.0.720198059802.issue30085@psf.upfronthosting.co.za> Message-ID: <1505428711.57.0.0821767952844.issue30085@psf.upfronthosting.co.za> Terry J. Reedy added the comment: Raymond, may someone else merge this? I will add a blurb. ---------- assignee: rhettinger -> _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 14 18:44:14 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Thu, 14 Sep 2017 22:44:14 +0000 Subject: [docs] [issue31458] Broken link to Misc/NEWS in What's New page In-Reply-To: <1505337780.24.0.126904968405.issue31458@psf.upfronthosting.co.za> Message-ID: <1505429054.05.0.756964182205.issue31458@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Reopening since @merwok has some concern that Misc/NEWS.d is just a big directory with a lot of rst files. reference https://github.com/python/cpython/pull/3555#pullrequestreview-62899457 ---------- resolution: fixed -> stage: resolved -> status: closed -> open _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 01:40:10 2017 From: report at bugs.python.org (=?utf-8?b?VmVkcmFuIMSMYcSNacSH?=) Date: Fri, 15 Sep 2017 05:40:10 +0000 Subject: [docs] [issue30096] Update examples in abc documentation to use abc.ABC In-Reply-To: <1492545098.58.0.705598301268.issue30096@psf.upfronthosting.co.za> Message-ID: <1505454010.59.0.353439105892.issue30096@psf.upfronthosting.co.za> Vedran ?a?i? added the comment: Well, actually, Raymond was proposing an alternative to Py2's special __metaclass__ attribute assignment syntax, which honestly _is_ an abomination (and the big part of reason why that was changed in Py3 to a keyword argument in a class definition). And Guido missed the point that in frameworks such as Django, the inheritance is the main thing people want, metaclasses just being a technical implementation detail (the easiest proof is that with modern descriptors with __set_name__ and ordered class namespaces, it's unnecessary to use metaclasses in Django model implementation at all). Here it is exactly the opposite. As I said in the linked comment, I think we missed the opportunity to make Python much more powerful, practically shunning the idea of keyword arguments in a class definition totally. But as it is said, Guido's will be done. :-) Thanks for the link. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 12:25:30 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Fri, 15 Sep 2017 16:25:30 +0000 Subject: [docs] [issue29916] No explicit documentation for PyGetSetDef and getter and setter C-API In-Reply-To: <1490610414.6.0.8634942266.issue29916@psf.upfronthosting.co.za> Message-ID: <1505492730.02.0.406097180142.issue29916@psf.upfronthosting.co.za> Serhiy Storchaka added the comment: New changeset da67e0d644bd3185efdaa4d15cc2ac0828ca83f9 by Serhiy Storchaka (Michael Seifert) in branch 'master': bpo-29916: Include PyGetSetDef in C API extension documentation. (#831) https://github.com/python/cpython/commit/da67e0d644bd3185efdaa4d15cc2ac0828ca83f9 ---------- nosy: +serhiy.storchaka _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 13:34:45 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Fri, 15 Sep 2017 17:34:45 +0000 Subject: [docs] [issue31487] Improve f-strings documentation wrt format specifiers Message-ID: <1505496885.72.0.160129428054.issue31487@psf.upfronthosting.co.za> New submission from Mariatta Wijaya: Provide a couple more examples of using format specifiers in f-string. ---------- assignee: docs at python components: Documentation messages: 302279 nosy: Mariatta, docs at python, eric.smith priority: normal severity: normal status: open title: Improve f-strings documentation wrt format specifiers _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 13:35:09 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Fri, 15 Sep 2017 17:35:09 +0000 Subject: [docs] [issue31487] Improve f-strings documentation wrt format specifiers In-Reply-To: <1505496885.72.0.160129428054.issue31487@psf.upfronthosting.co.za> Message-ID: <1505496909.0.0.411626878084.issue31487@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- keywords: +patch pull_requests: +3595 stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 13:49:38 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Fri, 15 Sep 2017 17:49:38 +0000 Subject: [docs] [issue31487] Improve f-strings documentation wrt format specifiers In-Reply-To: <1505496885.72.0.160129428054.issue31487@psf.upfronthosting.co.za> Message-ID: <1505497778.84.0.567400967969.issue31487@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- versions: +Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 14:02:40 2017 From: report at bugs.python.org (=?utf-8?q?=C3=89ric_Araujo?=) Date: Fri, 15 Sep 2017 18:02:40 +0000 Subject: [docs] [issue31454] Include "import as" in tutorial In-Reply-To: <1505317940.24.0.986048971751.issue31454@psf.upfronthosting.co.za> Message-ID: <1505498560.71.0.381715395149.issue31454@psf.upfronthosting.co.za> Changes by ?ric Araujo : ---------- keywords: +easy _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 14:15:40 2017 From: report at bugs.python.org (=?utf-8?q?=C3=89ric_Araujo?=) Date: Fri, 15 Sep 2017 18:15:40 +0000 Subject: [docs] [issue30096] Update examples in abc documentation to use abc.ABC In-Reply-To: <1492545098.58.0.705598301268.issue30096@psf.upfronthosting.co.za> Message-ID: <1505499339.99.0.374385972445.issue30096@psf.upfronthosting.co.za> ?ric Araujo added the comment: Keyword arguments in a class definition are supported: https://www.python.org/dev/peps/pep-3115/#specification Anyway, this ticket is closed, a mailing list such as python-ideas would be a better venue to discuss base classes vs metaclasses in a general way. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 16:28:28 2017 From: report at bugs.python.org (Novel) Date: Fri, 15 Sep 2017 20:28:28 +0000 Subject: [docs] [issue31454] Include "import as" in tutorial In-Reply-To: <1505317940.24.0.986048971751.issue31454@psf.upfronthosting.co.za> Message-ID: <1505507308.67.0.460500027116.issue31454@psf.upfronthosting.co.za> Novel added the comment: The offending file is here: https://github.com/python/cpython/blob/master/Doc/tutorial/modules.rst Read the developer's guide to learn how to submit your changes to python. https://devguide.python.org/ ---------- nosy: +nyt _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 16:59:26 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Fri, 15 Sep 2017 20:59:26 +0000 Subject: [docs] [issue31454] Include "import as" in tutorial In-Reply-To: <1505317940.24.0.986048971751.issue31454@psf.upfronthosting.co.za> Message-ID: <1505509166.21.0.499376886064.issue31454@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: I might know an aspiring contributor who can work on this. Assigning to myself. ---------- assignee: docs at python -> Mariatta _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 20:01:52 2017 From: report at bugs.python.org (Michael Seifert) Date: Sat, 16 Sep 2017 00:01:52 +0000 Subject: [docs] [issue29916] No explicit documentation for PyGetSetDef and getter and setter C-API In-Reply-To: <1490610414.6.0.8634942266.issue29916@psf.upfronthosting.co.za> Message-ID: <1505520112.17.0.636100898758.issue29916@psf.upfronthosting.co.za> Changes by Michael Seifert : ---------- keywords: +patch pull_requests: +3598 stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 22:07:45 2017 From: report at bugs.python.org (=?utf-8?q?=C3=89ric_Araujo?=) Date: Sat, 16 Sep 2017 02:07:45 +0000 Subject: [docs] [issue15472] Itertools doc summary table misdocuments some arguments In-Reply-To: <1343413434.71.0.36910737273.issue15472@psf.upfronthosting.co.za> Message-ID: <1505527664.91.0.00513723843851.issue15472@psf.upfronthosting.co.za> ?ric Araujo added the comment: Per Raymond?s feedback, I will close this. The table is useful as a quick reference, seq is a shortcut, ?it? or ?iter? are worse names, the first doc line says this is all about iterators, and the individual function docs do use ?iterable?. ---------- status: open -> pending _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 22:10:26 2017 From: report at bugs.python.org (=?utf-8?q?=C3=89ric_Araujo?=) Date: Sat, 16 Sep 2017 02:10:26 +0000 Subject: [docs] [issue9842] Document ... used in recursive repr of containers In-Reply-To: <1284336324.93.0.400210409006.issue9842@psf.upfronthosting.co.za> Message-ID: <1505527826.39.0.770789515587.issue9842@psf.upfronthosting.co.za> Changes by ?ric Araujo : ---------- versions: +Python 3.6, Python 3.7 -Python 3.2, Python 3.3, Python 3.4 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 22:24:28 2017 From: report at bugs.python.org (Michael Seifert) Date: Sat, 16 Sep 2017 02:24:28 +0000 Subject: [docs] [issue29916] No explicit documentation for PyGetSetDef and getter and setter C-API In-Reply-To: <1490610414.6.0.8634942266.issue29916@psf.upfronthosting.co.za> Message-ID: <1505528668.67.0.454132018847.issue29916@psf.upfronthosting.co.za> Changes by Michael Seifert : ---------- pull_requests: +3600 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 15 23:35:31 2017 From: report at bugs.python.org (Mike Hoy) Date: Sat, 16 Sep 2017 03:35:31 +0000 Subject: [docs] [issue9842] Document ... used in recursive repr of containers In-Reply-To: <1284336324.93.0.400210409006.issue9842@psf.upfronthosting.co.za> Message-ID: <1505532931.75.0.469416640147.issue9842@psf.upfronthosting.co.za> Changes by Mike Hoy : ---------- nosy: +vexoxev _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 16 01:01:36 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Sat, 16 Sep 2017 05:01:36 +0000 Subject: [docs] [issue15472] Itertools doc summary table misdocuments some arguments In-Reply-To: <1343413434.71.0.36910737273.issue15472@psf.upfronthosting.co.za> Message-ID: <1505538096.17.0.468719310965.issue15472@psf.upfronthosting.co.za> Raymond Hettinger added the comment: Thank you. ---------- resolution: -> wont fix stage: -> resolved status: pending -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 16 07:29:36 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Sat, 16 Sep 2017 11:29:36 +0000 Subject: [docs] [issue29916] No explicit documentation for PyGetSetDef and getter and setter C-API In-Reply-To: <1490610414.6.0.8634942266.issue29916@psf.upfronthosting.co.za> Message-ID: <1505561376.82.0.722559975301.issue29916@psf.upfronthosting.co.za> Serhiy Storchaka added the comment: New changeset 51ea80697b023595cdd79c7696589a04cc581693 by Serhiy Storchaka (Michael Seifert) in branch '3.6': bpo-29916: Include PyGetSetDef in C API extension documentation. (#831) (#3607) https://github.com/python/cpython/commit/51ea80697b023595cdd79c7696589a04cc581693 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 16 07:30:10 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Sat, 16 Sep 2017 11:30:10 +0000 Subject: [docs] [issue29916] No explicit documentation for PyGetSetDef and getter and setter C-API In-Reply-To: <1490610414.6.0.8634942266.issue29916@psf.upfronthosting.co.za> Message-ID: <1505561410.43.0.90475124758.issue29916@psf.upfronthosting.co.za> Serhiy Storchaka added the comment: New changeset 41376241e364e4f84cd14631634604edbd105da0 by Serhiy Storchaka (Michael Seifert) in branch '2.7': bpo-29916: Include PyGetSetDef in C API extension documentation. (#831) (#3609) https://github.com/python/cpython/commit/41376241e364e4f84cd14631634604edbd105da0 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 16 07:35:35 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Sat, 16 Sep 2017 11:35:35 +0000 Subject: [docs] [issue29916] No explicit documentation for PyGetSetDef and getter and setter C-API In-Reply-To: <1490610414.6.0.8634942266.issue29916@psf.upfronthosting.co.za> Message-ID: <1505561735.93.0.0148840565719.issue29916@psf.upfronthosting.co.za> Changes by Serhiy Storchaka : ---------- assignee: docs at python -> serhiy.storchaka resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> enhancement versions: +Python 2.7, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 16 07:36:24 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Sat, 16 Sep 2017 11:36:24 +0000 Subject: [docs] [issue29916] No explicit documentation for PyGetSetDef and getter and setter C-API In-Reply-To: <1490610414.6.0.8634942266.issue29916@psf.upfronthosting.co.za> Message-ID: <1505561784.53.0.320236059747.issue29916@psf.upfronthosting.co.za> Serhiy Storchaka added the comment: Thank you Michael for your contribution. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 16 11:24:51 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sat, 16 Sep 2017 15:24:51 +0000 Subject: [docs] [issue31458] Broken link to Misc/NEWS in What's New page In-Reply-To: <1505337780.24.0.126904968405.issue31458@psf.upfronthosting.co.za> Message-ID: <1505575491.04.0.275396068808.issue31458@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- pull_requests: +3608 stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 16 13:43:32 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sat, 16 Sep 2017 17:43:32 +0000 Subject: [docs] [issue31458] Broken link to Misc/NEWS in What's New page In-Reply-To: <1505337780.24.0.126904968405.issue31458@psf.upfronthosting.co.za> Message-ID: <1505583812.21.0.150148048163.issue31458@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 0ec8c4bd10dcfd8e580628868efdd3df91038898 by Mariatta in branch 'master': bpo-31458: Clarify that Changelog is built from Misc/NEWS.d directory (GH-3617) https://github.com/python/cpython/commit/0ec8c4bd10dcfd8e580628868efdd3df91038898 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 16 13:43:43 2017 From: report at bugs.python.org (Roundup Robot) Date: Sat, 16 Sep 2017 17:43:43 +0000 Subject: [docs] [issue31458] Broken link to Misc/NEWS in What's New page In-Reply-To: <1505337780.24.0.126904968405.issue31458@psf.upfronthosting.co.za> Message-ID: <1505583823.47.0.598174340516.issue31458@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3609 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 16 14:44:30 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sat, 16 Sep 2017 18:44:30 +0000 Subject: [docs] [issue31458] Broken link to Misc/NEWS in What's New page In-Reply-To: <1505337780.24.0.126904968405.issue31458@psf.upfronthosting.co.za> Message-ID: <1505587470.44.0.13122499891.issue31458@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset d3cba8175ca48d33a4e0117109a44935a1cec658 by Mariatta (Miss Islington (bot)) in branch '3.6': bpo-31458: Clarify that Changelog is built from Misc/NEWS.d directory (GH-3617) (GH-3618) https://github.com/python/cpython/commit/d3cba8175ca48d33a4e0117109a44935a1cec658 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 16 15:00:05 2017 From: report at bugs.python.org (Roundup Robot) Date: Sat, 16 Sep 2017 19:00:05 +0000 Subject: [docs] [issue31487] Improve f-strings documentation wrt format specifiers In-Reply-To: <1505496885.72.0.160129428054.issue31487@psf.upfronthosting.co.za> Message-ID: <1505588405.74.0.614867716743.issue31487@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3610 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 16 15:01:34 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sat, 16 Sep 2017 19:01:34 +0000 Subject: [docs] [issue31487] Improve f-strings documentation wrt format specifiers In-Reply-To: <1505496885.72.0.160129428054.issue31487@psf.upfronthosting.co.za> Message-ID: <1505588493.97.0.296313380546.issue31487@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 46c1052404c1a6e4d35af8e96613db8a4be75b52 by Mariatta (Miss Islington (bot)) in branch '3.6': bpo-31487: Improve f-strings documentation (GH-3604) (GH-3619) https://github.com/python/cpython/commit/46c1052404c1a6e4d35af8e96613db8a4be75b52 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 16 15:01:58 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sat, 16 Sep 2017 19:01:58 +0000 Subject: [docs] [issue31487] Improve f-strings documentation wrt format specifiers In-Reply-To: <1505496885.72.0.160129428054.issue31487@psf.upfronthosting.co.za> Message-ID: <1505588518.37.0.491864242033.issue31487@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 16 15:03:08 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sat, 16 Sep 2017 19:03:08 +0000 Subject: [docs] [issue31458] Broken link to Misc/NEWS in What's New page In-Reply-To: <1505337780.24.0.126904968405.issue31458@psf.upfronthosting.co.za> Message-ID: <1505588588.96.0.0386111499253.issue31458@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 08:55:50 2017 From: report at bugs.python.org (Romuald Brunet) Date: Sun, 17 Sep 2017 12:55:50 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1505652949.89.0.858347344847.issue31443@psf.upfronthosting.co.za> Romuald Brunet added the comment: I'm not sure this is relevant, but I've just made a simple test on Windows (7) with my C extension using { ? .tp_new = PyType_GenericNew } and the compiler did not complain (also the code worked as expected) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 09:12:15 2017 From: report at bugs.python.org (Stefan Krah) Date: Sun, 17 Sep 2017 13:12:15 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1505653935.27.0.787482278872.issue31443@psf.upfronthosting.co.za> Stefan Krah added the comment: PyType_GenericNew() should be in libpython, so indeed the example in the docs seems a bit odd to me. ---------- nosy: +skrah _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 10:38:38 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sun, 17 Sep 2017 14:38:38 +0000 Subject: [docs] [issue31487] Improve f-strings documentation wrt format specifiers In-Reply-To: <1505496885.72.0.160129428054.issue31487@psf.upfronthosting.co.za> Message-ID: <1505659118.06.0.667665912667.issue31487@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- pull_requests: +3616 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 10:43:33 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sun, 17 Sep 2017 14:43:33 +0000 Subject: [docs] [issue31487] Improve f-strings documentation wrt format specifiers In-Reply-To: <1505496885.72.0.160129428054.issue31487@psf.upfronthosting.co.za> Message-ID: <1505659413.37.0.253833177048.issue31487@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 63c591c0b0b57870a606e8edc59afe6264e7504d by Mariatta in branch 'master': bpo-31487: Update F-strings doc example (GH-3627) https://github.com/python/cpython/commit/63c591c0b0b57870a606e8edc59afe6264e7504d ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 10:43:47 2017 From: report at bugs.python.org (Roundup Robot) Date: Sun, 17 Sep 2017 14:43:47 +0000 Subject: [docs] [issue31487] Improve f-strings documentation wrt format specifiers In-Reply-To: <1505496885.72.0.160129428054.issue31487@psf.upfronthosting.co.za> Message-ID: <1505659427.07.0.635668906511.issue31487@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3617 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 10:57:10 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sun, 17 Sep 2017 14:57:10 +0000 Subject: [docs] [issue31487] Improve f-strings documentation wrt format specifiers In-Reply-To: <1505496885.72.0.160129428054.issue31487@psf.upfronthosting.co.za> Message-ID: <1505660230.81.0.114185905538.issue31487@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 4f6bae9677c0e5398e64c503fd3c19cae94567da by Mariatta (Miss Islington (bot)) in branch '3.6': bpo-31487: Update F-strings doc example (GH-3627) (GH-3628) https://github.com/python/cpython/commit/4f6bae9677c0e5398e64c503fd3c19cae94567da ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 17:32:15 2017 From: report at bugs.python.org (Stefan Krah) Date: Sun, 17 Sep 2017 21:32:15 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1505683935.91.0.393386031055.issue31443@psf.upfronthosting.co.za> Stefan Krah added the comment: FWIW, I've been using https://github.com/python/cpython/blob/master/Modules/_decimal/_decimal.c#L689 the static initialization on problematic platforms like Windows and AIX for years, without any problems. I'm sure this is valid C, and people here agree: https://stackoverflow.com/questions/6989107/cant-initialize-static-structure-with-function-pointer-from-another-translation Perhaps this was an issue on very old IRIX systems or similar? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 18:31:48 2017 From: report at bugs.python.org (Stefan Krah) Date: Sun, 17 Sep 2017 22:31:48 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1505687508.54.0.0993581915326.issue31443@psf.upfronthosting.co.za> Stefan Krah added the comment: Christian, do you remember which compiler was the reason for the commit cbf3b5cb76906fba15dbf59a1e83c540a447b907 ? + /* Due to cross platform compiler issues the slots must be filled + * here. It's required for portability to Windows without requiring + * C++. */ Null_Type.tp_base = &PyBaseObject_Type; + Null_Type.tp_new = PyType_GenericNew; Str_Type.tp_base = &PyUnicode_Type; I've never had problems with VS 2008 or greater. ---------- nosy: +christian.heimes _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 19:11:19 2017 From: report at bugs.python.org (svelankar) Date: Sun, 17 Sep 2017 23:11:19 +0000 Subject: [docs] [issue31501] Operator precedence description for arithmetic operators Message-ID: <1505689879.15.0.556612193344.issue31501@psf.upfronthosting.co.za> New submission from svelankar: Description for the operator precedence should read "Multiplication, matrix multiplication division, remainder" instead of "Multiplication, matrix multiplication, division, floor division, remainder. Section 6.16. Operator precedence I feel this would help a new comer to python to instantly figure out what does "//" stand for. ---------- assignee: docs at python components: Documentation messages: 302391 nosy: Mariatta, docs at python, svelankar priority: normal severity: normal status: open title: Operator precedence description for arithmetic operators versions: Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 19:15:37 2017 From: report at bugs.python.org (svelankar) Date: Sun, 17 Sep 2017 23:15:37 +0000 Subject: [docs] [issue31501] Operator precedence description for arithmetic operators In-Reply-To: <1505689879.15.0.556612193344.issue31501@psf.upfronthosting.co.za> Message-ID: <1505690137.19.0.015036254057.issue31501@psf.upfronthosting.co.za> Changes by svelankar : ---------- keywords: +patch pull_requests: +3623 stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 20:14:24 2017 From: report at bugs.python.org (Martin Panter) Date: Mon, 18 Sep 2017 00:14:24 +0000 Subject: [docs] [issue31487] Improve f-strings documentation wrt format specifiers In-Reply-To: <1505496885.72.0.160129428054.issue31487@psf.upfronthosting.co.za> Message-ID: <1505693664.79.0.92292632931.issue31487@psf.upfronthosting.co.za> Martin Panter added the comment: >>> f"{number:#0x}" # using integer format specifier It?s not clear what your purpose was adding the above line, but the zero flag (0) does nothing because there is no ?width? field. I think it could be misleading, because it is actually the ?#x? codes that generate the ?0x? prefix. If you want to illustrate a minimum width, I suggest something like >>> f"{number:#06x}" '0x0400' or (if the number is never negative) >>> f"0x{number:04X}" '0x0400' Or if you don?t care about the width: >>> f"{number:#x}" '0x400' ---------- nosy: +martin.panter _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 20:51:43 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 18 Sep 2017 00:51:43 +0000 Subject: [docs] [issue31501] Operator precedence description for arithmetic operators In-Reply-To: <1505689879.15.0.556612193344.issue31501@psf.upfronthosting.co.za> Message-ID: <1505695903.41.0.362877241313.issue31501@psf.upfronthosting.co.za> Raymond Hettinger added the comment: This is a reasonable proposal. ---------- nosy: +rhettinger versions: +Python 3.6 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 20:56:18 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 18 Sep 2017 00:56:18 +0000 Subject: [docs] [issue31501] Operator precedence description for arithmetic operators In-Reply-To: <1505689879.15.0.556612193344.issue31501@psf.upfronthosting.co.za> Message-ID: <1505696178.66.0.806584560542.issue31501@psf.upfronthosting.co.za> Raymond Hettinger added the comment: New changeset 9b47af65375fab9318e88ccb061394a36c8c6c33 by Raymond Hettinger (svelankar) in branch 'master': bpo-31501: Operator precedence description for arithmetic operators (#3633) https://github.com/python/cpython/commit/9b47af65375fab9318e88ccb061394a36c8c6c33 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 20:56:30 2017 From: report at bugs.python.org (Roundup Robot) Date: Mon, 18 Sep 2017 00:56:30 +0000 Subject: [docs] [issue31501] Operator precedence description for arithmetic operators In-Reply-To: <1505689879.15.0.556612193344.issue31501@psf.upfronthosting.co.za> Message-ID: <1505696190.71.0.132397680035.issue31501@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3630 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 17 20:56:53 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 18 Sep 2017 00:56:53 +0000 Subject: [docs] [issue31501] Operator precedence description for arithmetic operators In-Reply-To: <1505689879.15.0.556612193344.issue31501@psf.upfronthosting.co.za> Message-ID: <1505696213.9.0.273661452946.issue31501@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 04:14:14 2017 From: report at bugs.python.org (Ashok Bakthavathsalam) Date: Mon, 18 Sep 2017 08:14:14 +0000 Subject: [docs] [issue31021] Clarify programming faq. In-Reply-To: <1500933050.31.0.733502304217.issue31021@psf.upfronthosting.co.za> Message-ID: <1505722454.4.0.417353154995.issue31021@psf.upfronthosting.co.za> Ashok Bakthavathsalam added the comment: So, what is the resolution on this? ---------- nosy: +kgashok _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 04:15:22 2017 From: report at bugs.python.org (Ashok Bakthavathsalam) Date: Mon, 18 Sep 2017 08:15:22 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505722522.62.0.109995964386.issue31504@psf.upfronthosting.co.za> Changes by Ashok Bakthavathsalam : ---------- assignee: -> docs at python components: +Documentation -Library (Lib) nosy: +docs at python _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 04:19:14 2017 From: report at bugs.python.org (Ashok Bakthavathsalam) Date: Mon, 18 Sep 2017 08:19:14 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505722754.52.0.05144585388.issue31504@psf.upfronthosting.co.za> Ashok Bakthavathsalam added the comment: Also, "".rindex("") returns 0 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 04:24:45 2017 From: report at bugs.python.org (Ashok Bakthavathsalam) Date: Mon, 18 Sep 2017 08:24:45 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505723085.14.0.627647855797.issue31504@psf.upfronthosting.co.za> Ashok Bakthavathsalam added the comment: string.find() also exhibits the same behaviour. "abcde".find("") -> 5 which also is not documented anywhere. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 04:31:57 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Mon, 18 Sep 2017 08:31:57 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505723517.81.0.850896187357.issue31504@psf.upfronthosting.co.za> Serhiy Storchaka added the comment: This is documented. "Return the highest index in the string where substring sub is found," ---------- nosy: +serhiy.storchaka _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 04:57:10 2017 From: report at bugs.python.org (Ashok Bakthavathsalam) Date: Mon, 18 Sep 2017 08:57:10 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505725030.18.0.0499336276531.issue31504@psf.upfronthosting.co.za> Ashok Bakthavathsalam added the comment: The documentation (https://docs.python.org/3/library/stdtypes.html#str.find) does not describe what will be the behaviour if the substring is "". And by the way, as per https://docs.python.org/3/reference/expressions.html#membership-test-operations, Empty strings are always considered to be a substring of any other string, so "" in "abc" will return True. Returning an invalid index value, although confusing, should at least be documented in some form. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 05:11:26 2017 From: report at bugs.python.org (Martin Panter) Date: Mon, 18 Sep 2017 09:11:26 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505725886.29.0.216986411056.issue31504@psf.upfronthosting.co.za> Martin Panter added the comment: The behaviour for searching for empty strings in Python is inconsistent; see Issue 24243. IMO the behaviour for the (r)find/index methods is sensible, but it is worth making the documentation explicit. The returned indexes you have given (5, 1, and 0) are valid for slicing. ---------- nosy: +martin.panter _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 05:26:11 2017 From: report at bugs.python.org (Ashok Bakthavathsalam) Date: Mon, 18 Sep 2017 09:26:11 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505726771.05.0.667564406554.issue31504@psf.upfronthosting.co.za> Changes by Ashok Bakthavathsalam : ---------- keywords: +patch pull_requests: +3637 stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 05:31:14 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Mon, 18 Sep 2017 09:31:14 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505727074.57.0.477918783745.issue31504@psf.upfronthosting.co.za> Serhiy Storchaka added the comment: The documentation doesn't mention empty string specially because there is nothing special with empty string. Returned index value is valid. "abcde"[5:5] == "". Issue24243 is about the case of end < start. Not this case. I don't see a bug here. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 05:34:09 2017 From: report at bugs.python.org (Ashok Bakthavathsalam) Date: Mon, 18 Sep 2017 09:34:09 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505727249.2.0.766543978979.issue31504@psf.upfronthosting.co.za> Ashok Bakthavathsalam added the comment: I am not saying that there is a bug. As Martin points out, "it is worth making the documentation explicit." ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 05:36:48 2017 From: report at bugs.python.org (Ashok Bakthavathsalam) Date: Mon, 18 Sep 2017 09:36:48 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505727408.28.0.500452451667.issue31504@psf.upfronthosting.co.za> Ashok Bakthavathsalam added the comment: How about "abcde"[5] Traceback (most recent call last): File "python", line 1, in IndexError: string index out of range ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 05:43:06 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Mon, 18 Sep 2017 09:43:06 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505727786.67.0.343464840021.issue31504@psf.upfronthosting.co.za> Serhiy Storchaka added the comment: 5 is not valid index of character, but it is valid index of substring. IMHO documenting explicitly miscellaneous particular cases which are not exceptions of general rules just adds a noise. This makes the documentation larger and decrease the chance that it will be read. ---------- nosy: +r.david.murray, rhettinger _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 05:53:39 2017 From: report at bugs.python.org (Ashok Bakthavathsalam) Date: Mon, 18 Sep 2017 09:53:39 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505728419.11.0.270421271921.issue31504@psf.upfronthosting.co.za> Ashok Bakthavathsalam added the comment: Look at my suggested changes. It doesn't add noise, IMHO. All I am saying is that the explicit behaviour needs to be documented. I unnecessarily wasted at least 3-4 hours on this "undocumented" behavior. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 06:08:03 2017 From: report at bugs.python.org (Ashok Bakthavathsalam) Date: Mon, 18 Sep 2017 10:08:03 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505729283.92.0.105646909819.issue31504@psf.upfronthosting.co.za> Ashok Bakthavathsalam added the comment: @Storchaka, You say `5` is related to the substring. Pray, explain how 5 is related to a null substring? Also, from https://bugs.python.org/msg243710, as per the great Hettinger: Though this is closed as not a bug, feel free to add an example or a mention in the documentation. Keep it short though. That's all I am asking to be included. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 08:33:31 2017 From: report at bugs.python.org (Ashok Bakthavathsalam) Date: Mon, 18 Sep 2017 12:33:31 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505738011.04.0.749355860093.issue31504@psf.upfronthosting.co.za> Changes by Ashok Bakthavathsalam : ---------- type: behavior -> enhancement _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 10:14:07 2017 From: report at bugs.python.org (=?utf-8?b?VmVkcmFuIMSMYcSNacSH?=) Date: Mon, 18 Sep 2017 14:14:07 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505744047.7.0.711964597765.issue31504@psf.upfronthosting.co.za> Vedran ?a?i? added the comment: This is nonsense. 'abcde'[7:7] is also ''. So the maximal index in fact doesn't exist. What do you think exactly is the property that differentiates 5 from 7 here? ---------- nosy: +veky _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 10:29:21 2017 From: report at bugs.python.org (R. David Murray) Date: Mon, 18 Sep 2017 14:29:21 +0000 Subject: [docs] [issue31021] Clarify programming faq. In-Reply-To: <1500933050.31.0.733502304217.issue31021@psf.upfronthosting.co.za> Message-ID: <1505744961.14.0.453861801076.issue31021@psf.upfronthosting.co.za> R. David Murray added the comment: I think there is nothing to do here unless Mark likes my suggestion and/or someone comes up with an even better improvement. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 10:53:20 2017 From: report at bugs.python.org (Christian Heimes) Date: Mon, 18 Sep 2017 14:53:20 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1505746400.72.0.935929687158.issue31443@psf.upfronthosting.co.za> Christian Heimes added the comment: I think it's svnmerge of this commit, which talks about VS 2005. It might have been required to support VS 2003 and 2005. ``` r59290 | christian.heimes | 2007-12-03 14:47:29 +0100 (Mon, 03 Dec 2007) | 3 lines Applied my patch #1455 with some extra fixes for VS 2005 The new msvc9compiler module supports VS 2005 and VS 2008. I've also fixed build_ext to support PCbuild8 and PCbuild9 and backported my fix for xxmodule.c from py3k. The old code msvccompiler is still in place in case somebody likes to build an extension with VS 2003 or earlier. I've also updated the cygwin compiler module for VS 2005 and VS 2008. It works with VS 2005 but I'm unable to test it with VS 2008. We have to wait for a new version of cygwin. ``` ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 11:55:59 2017 From: report at bugs.python.org (R. David Murray) Date: Mon, 18 Sep 2017 15:55:59 +0000 Subject: [docs] [issue31504] Documentation for return value for string.rindex is missing when search string is empty In-Reply-To: <1505721887.17.0.00733091873512.issue31504@psf.upfronthosting.co.za> Message-ID: <1505750159.78.0.637863599728.issue31504@psf.upfronthosting.co.za> R. David Murray added the comment: You have to remember that the most useful way to think about python slice indexes is that they point between characters. Consider, for example, that you have a starting index of something, and you are looking backward in the string for a trailing delimiter: >>> x = 'this is of something' >>> x.rfind('>', 9) 22 >>> x[9:22] 'weird example' So the above is why 5 is different from 7: 5 is the index that you would use in a slice if you wanted the string that ended before the match...and the match in the null string case is the end of the string. That is, Python is being consistent in this degenerate case. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 16:05:46 2017 From: report at bugs.python.org (Josh Rosenberg) Date: Mon, 18 Sep 2017 20:05:46 +0000 Subject: [docs] [issue31513] Document structure of memo dictionary to enable more advanced __deepcopy__ uses Message-ID: <1505765146.72.0.920079874079.issue31513@psf.upfronthosting.co.za> New submission from Josh Rosenberg: At present, the documentation for the copy module doesn't document anything about the memo dictionary for deepcopy except to say that it must be received by custom __deepcopy__ methods and passed along when calling copy.deepcopy, and that it is a "dictionary of objects already copied during the current copying pass", without specifying what the keys or values are. Without providing a documented meaning for the keys and values in the memo dict, it's impossible to use it in a supported way for more complex cases (e.g. a case where the object must be created partially and memoized prior to deepcopying attributes that can self-reference). For an example, see this StackOverflow answer's approach to using __deepcopy__: https://stackoverflow.com/a/46284091/364696 Officially, the line where it does: memo[id(self)] = newself = self.__class__(copy.deepcopy(self.id, memo)) is not using documented behavior AFAICT; the fact that the memo dict maps id()'s of the original objects to the new instance is undocumented. This wouldn't be so bad if there were a documented way to achieve the desired result, but in recursive cases like these it's the only way to add deepcopy support without also adding pickle support. I'd suggest documenting the current behavior, assuming the current behavior is consistent on all alternate Python implementations; I know id() is a little funky elsewhere, but I'm not sure there is any other sane implementation. ---------- assignee: docs at python components: Documentation messages: 302485 nosy: docs at python, josh.r priority: normal severity: normal status: open title: Document structure of memo dictionary to enable more advanced __deepcopy__ uses _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 16:24:48 2017 From: report at bugs.python.org (R. David Murray) Date: Mon, 18 Sep 2017 20:24:48 +0000 Subject: [docs] [issue31513] Document structure of memo dictionary to enable more advanced __deepcopy__ uses In-Reply-To: <1505765146.72.0.920079874079.issue31513@psf.upfronthosting.co.za> Message-ID: <1505766288.71.0.412314229138.issue31513@psf.upfronthosting.co.za> R. David Murray added the comment: Unless I'm mistaken (and someone will correct me and reopen the issue if I am :) it is intentionally undocumented. A proposal for a documented protocol of some sort is certainly a possibility, but is something that should start with a discussion on the python-ideas mailing list. ---------- nosy: +r.david.murray resolution: -> not a bug stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 16:50:03 2017 From: report at bugs.python.org (=?utf-8?b?VmVkcmFuIMSMYcSNacSH?=) Date: Mon, 18 Sep 2017 20:50:03 +0000 Subject: [docs] [issue24243] behavior for finding an empty string is inconsistent with documentation In-Reply-To: <1432094562.27.0.346738352121.issue24243@psf.upfronthosting.co.za> Message-ID: <1505767803.4.0.414102341719.issue24243@psf.upfronthosting.co.za> Vedran ?a?i? added the comment: Raymond, with respect, I think you're either wrong here, or misleading with a purpose. There is a big difference between any(()) returning False, all(()) returning True, '' in '' returning True, math.factorial(0) returning 1, and set() <= set() returning True, on one hand, and ''.rindex('') returning 5, on the other. You might argue the latter is convenient (though I haven't seen any argument in favor of that), but it's simply not in the same category as other phenomena you're equating it with. Those in the first group are mathematical definitions. They cannot be different without breaking various mathematical properties. 0! is 1 in the same way, and with the same reason, that 3! is 6. If 0! were 5, then 3! would _have_ to be 30. Both the specification (as the order of the symmetry group), and various algorithms for calculating factorial, simply give 1 when given 0 as an input. You can't really get 5 unless you explicitly treat 0 as a special case. In the second group, there is an answer that might be convenient, and it probably has some obvious algorithm that produces it (I haven't read the code, but I doubt that someone treated '' as a special case there), but it doesn't fit the specification (maximal index doesn't exist), and you can easily write another algorithm that doesn't obviously treat '' as a special case, gives the same answers for all the other "sensible" cases, and gives something completely different for this case. The proof is that in many very similar cases, those different algorithms _have_ (inadvertently) been written. One question is _whether_ '' is in some other string. Quite another is _where_ it is. First one is (greatly simplified, since it doesn't require contiguousness) all(c in other_string for c in ''), and that's obviously True for the same reason that set() <= any_set is True. But all(1/0 for c in '') is _also_ True, which shows that it really doesn't matter _what_ we test, as long as we test it on an empty collection. It shouldn't give us (by design) _any_ information that we can extract about "that particular occurence of ''" because there is in fact _no_ particular occurence to talk about. In the face of ambiguity, refuse the temptation to guess. Yes, I see the convenience of not rasing ValueErrors for various string operations so some algorithms can say "ok, give me any value in case of '', I don't really care what it is", but we already do raise it for some operations - e.g. when splitting on an empty separator. We should do the same here. Either change the specification, or if the specification tells you to calculate something that doesn't exist, raise an exception. ---------- nosy: +veky _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 17:03:20 2017 From: report at bugs.python.org (Antoine Pitrou) Date: Mon, 18 Sep 2017 21:03:20 +0000 Subject: [docs] [issue24243] behavior for finding an empty string is inconsistent with documentation In-Reply-To: <1432094562.27.0.346738352121.issue24243@psf.upfronthosting.co.za> Message-ID: <1505768600.9.0.870370820581.issue24243@psf.upfronthosting.co.za> Antoine Pitrou added the comment: I'm not sure why we're arguing over this. Is this actually something that matters in the real world? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 18 17:10:09 2017 From: report at bugs.python.org (R. David Murray) Date: Mon, 18 Sep 2017 21:10:09 +0000 Subject: [docs] [issue24243] behavior for finding an empty string is inconsistent with documentation In-Reply-To: <1432094562.27.0.346738352121.issue24243@psf.upfronthosting.co.za> Message-ID: <1505769009.6.0.826568718002.issue24243@psf.upfronthosting.co.za> R. David Murray added the comment: I'm not Raymond, but he is correct. This is an example of "taking advantage of the corner cases", and is something Python does a lot of, especially around strings and slices. The current behavior was carefully considered and has useful properties. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 19 04:04:54 2017 From: report at bugs.python.org (Franck Pommereau) Date: Tue, 19 Sep 2017 08:04:54 +0000 Subject: [docs] [issue31515] Doc for os.makedirs is inconsistent with actual behaviour Message-ID: <1505808294.39.0.0123921677022.issue31515@psf.upfronthosting.co.za> New submission from Franck Pommereau: Documentation of os.makedirs says "The default mode is 0777 (octal)" but when I use os.makedirs("foo"), the directory is created with permissions 0755. Documentation should be updated or default mode fixed. I've tested it only with Python 2.7.6 and 3.4.3 (those installed on my computer). ---------- assignee: docs at python components: Documentation, Library (Lib) messages: 302507 nosy: docs at python, fpom priority: normal severity: normal status: open title: Doc for os.makedirs is inconsistent with actual behaviour type: behavior versions: Python 2.7, Python 3.4 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 19 04:08:53 2017 From: report at bugs.python.org (Franck Pommereau) Date: Tue, 19 Sep 2017 08:08:53 +0000 Subject: [docs] [issue31515] Doc for os.makedirs is inconsistent with actual behaviour In-Reply-To: <1505808294.39.0.0123921677022.issue31515@psf.upfronthosting.co.za> Message-ID: <1505808533.3.0.446860446149.issue31515@psf.upfronthosting.co.za> Franck Pommereau added the comment: Sorry for the noise, I just discovered in the doc for os.mkdir that UMASK is applied on the mode passed to the functions. So the behaviour is actually correct. ---------- resolution: -> not a bug stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 19 18:48:33 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Tue, 19 Sep 2017 22:48:33 +0000 Subject: [docs] [issue31501] Operator precedence description for arithmetic operators In-Reply-To: <1505689879.15.0.556612193344.issue31501@psf.upfronthosting.co.za> Message-ID: <1505861313.52.0.563998401102.issue31501@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset e2593aa673c0347a74c4896a519e3b8cb7b55eb4 by Mariatta (Miss Islington (bot)) in branch '3.6': bpo-31501: Operator precedence description for arithmetic operators (GH-3633) (GH-3638) https://github.com/python/cpython/commit/e2593aa673c0347a74c4896a519e3b8cb7b55eb4 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 00:24:36 2017 From: report at bugs.python.org (Nick Coghlan) Date: Wed, 20 Sep 2017 04:24:36 +0000 Subject: [docs] [issue31517] MainThread association logic is fragile In-Reply-To: <1505826011.26.0.999867844657.issue31517@psf.upfronthosting.co.za> Message-ID: <1505881475.98.0.0589429363749.issue31517@psf.upfronthosting.co.za> Nick Coghlan added the comment: One place where this came up recently is in working out precisely how a Python-level subinterpreter API will interact with the threading API: https://mail.python.org/pipermail/python-dev/2017-September/149566.html That said, I do agree with Tim that the status quo isn't broken per se: we renamed `thread` to `_thread` in Python 3 for a reason, and that reason is that you really need to know how Python's threading internals work to do it safely. However, I do think we can treat this as a documentation enhancement request, where the `_thread` module docs could point out some of the requirements to ensure that low-level thread manipulation plays nice with the threading module. ---------- assignee: -> docs at python components: +Documentation nosy: +docs at python type: behavior -> enhancement _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 04:26:02 2017 From: report at bugs.python.org (Antoine Pitrou) Date: Wed, 20 Sep 2017 08:26:02 +0000 Subject: [docs] [issue31517] MainThread association logic is fragile In-Reply-To: <1505826011.26.0.999867844657.issue31517@psf.upfronthosting.co.za> Message-ID: <1505895962.07.0.926266908464.issue31517@psf.upfronthosting.co.za> Antoine Pitrou added the comment: > Is there a problem here? I haven't heard of anyone even wondering about this before. This came while working on the PEP 556 implementation. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 04:26:57 2017 From: report at bugs.python.org (Antoine Pitrou) Date: Wed, 20 Sep 2017 08:26:57 +0000 Subject: [docs] [issue31517] MainThread association logic is fragile In-Reply-To: <1505826011.26.0.999867844657.issue31517@psf.upfronthosting.co.za> Message-ID: <1505896017.59.0.628380967507.issue31517@psf.upfronthosting.co.za> Antoine Pitrou added the comment: > That said, I do agree with Tim that the status quo isn't broken per se: we renamed `thread` to `_thread` in Python 3 for a reason This is not caused by `_thread` specifically, but any background thread created by C code that might invoke Python code. The reproducer just uses the `_thread` module out of convenience. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 04:31:10 2017 From: report at bugs.python.org (Antoine Pitrou) Date: Wed, 20 Sep 2017 08:31:10 +0000 Subject: [docs] [issue31517] MainThread association logic is fragile In-Reply-To: <1505826011.26.0.999867844657.issue31517@psf.upfronthosting.co.za> Message-ID: <1505896270.06.0.217215127559.issue31517@psf.upfronthosting.co.za> Antoine Pitrou added the comment: I'm not sure this is an issue worth fixing, but I don't think it's a good idea to document such quirky semantics. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 04:47:19 2017 From: report at bugs.python.org (Nick Coghlan) Date: Wed, 20 Sep 2017 08:47:19 +0000 Subject: [docs] [issue31517] MainThread association logic is fragile In-Reply-To: <1505826011.26.0.999867844657.issue31517@psf.upfronthosting.co.za> Message-ID: <1505897239.09.0.420481780377.issue31517@psf.upfronthosting.co.za> Nick Coghlan added the comment: We had the quirks of import related threading deadlocks documented for a long time, not as a promise, but as a debugging aid (and a recommendation for "don't do that"). I'd see this as being similar: we'd document that if you're using the _thread module, or otherwise allowing operating system threads not managed by the threading module to call in and run arbitrary Python code, then you should run "import threading" early in the actual main thread to make sure it gets associated correctly. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 11:43:21 2017 From: report at bugs.python.org (Felipe) Date: Wed, 20 Sep 2017 15:43:21 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation Message-ID: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> New submission from Felipe: The link to the `OpenSSL cipher list format` 404s. I don't know if it's where the original meant to point, but the same information is available at https://wiki.openssl.org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT ---------- assignee: docs at python components: Documentation messages: 302629 nosy: docs at python, fov priority: normal severity: normal status: open title: Dead link in SSLContext.set_ciphers documentation versions: Python 3.4, Python 3.5, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 12:11:09 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 20 Sep 2017 16:11:09 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505923869.2.0.00196118338892.issue31533@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Where in the docs is this `OpenSSL cipher list format` link located? ---------- nosy: +Mariatta _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 12:51:43 2017 From: report at bugs.python.org (Antoine Pitrou) Date: Wed, 20 Sep 2017 16:51:43 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505926303.67.0.753975829781.issue31533@psf.upfronthosting.co.za> Antoine Pitrou added the comment: Mariatta, that would be in the documentation for the `SSLContext.set_ciphers` method (in `Doc/library/ssl.rst`). ---------- nosy: +pitrou _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 12:56:35 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 20 Sep 2017 16:56:35 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505926595.76.0.316472950721.issue31533@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Thanks Antoine. So is this a matter of replacing the url to https://wiki.openssl.org/index.php/Manual:Ciphers(1)#CIPHER_LIST_FORMAT? Or is there a better url that will not go out of date in the future... ---------- stage: -> needs patch versions: +Python 2.7 -Python 3.4, Python 3.5 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 12:57:27 2017 From: report at bugs.python.org (Antoine Pitrou) Date: Wed, 20 Sep 2017 16:57:27 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505926647.79.0.0656844748245.issue31533@psf.upfronthosting.co.za> Antoine Pitrou added the comment: I don't think OpenSSL are promising anything about their URLs (the old one having gone 404 is proof of that :-)). So Felipe's suggestion is as good as any, IMHO. ---------- nosy: +christian.heimes _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 13:00:40 2017 From: report at bugs.python.org (Felipe) Date: Wed, 20 Sep 2017 17:00:40 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505926840.82.0.72054826782.issue31533@psf.upfronthosting.co.za> Felipe added the comment: Woops. Apologies -- I somehow deleted that part from the report. Thanks Antoine for jumping in. If you are using the wiki url, make sure not to include the question mark at the end :-) ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 13:16:04 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 20 Sep 2017 17:16:04 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505927764.67.0.11524525367.issue31533@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Cool! I'm tagging this as an easy issue, suitable for first timers or new contributors. Felipe, are you up for preparing the PR? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 13:47:20 2017 From: report at bugs.python.org (Stefan Krah) Date: Wed, 20 Sep 2017 17:47:20 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1505929640.06.0.105257782419.issue31443@psf.upfronthosting.co.za> Stefan Krah added the comment: Thanks, Christian. -- I found that in the docs the culprit is Cygwin: db6a569de7ae595ada53b618fce6bbbd1c98d350 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 13:48:31 2017 From: report at bugs.python.org (Christian Heimes) Date: Wed, 20 Sep 2017 17:48:31 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1505929711.45.0.733488625863.issue31443@psf.upfronthosting.co.za> Christian Heimes added the comment: Do we still support cygwin? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 13:58:23 2017 From: report at bugs.python.org (Felipe) Date: Wed, 20 Sep 2017 17:58:23 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505930303.57.0.134570389931.issue31533@psf.upfronthosting.co.za> Felipe added the comment: Sure, will do! ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 14:03:50 2017 From: report at bugs.python.org (Stefan Krah) Date: Wed, 20 Sep 2017 18:03:50 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1505930630.52.0.371076929346.issue31443@psf.upfronthosting.co.za> Stefan Krah added the comment: I've just asked on python-dev if Cygwin is still broken. Not sure if we support it. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 14:05:35 2017 From: report at bugs.python.org (Roundup Robot) Date: Wed, 20 Sep 2017 18:05:35 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505930735.3.0.188136424772.issue31533@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- keywords: +patch pull_requests: +3663 stage: needs patch -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 14:20:20 2017 From: report at bugs.python.org (Christian Heimes) Date: Wed, 20 Sep 2017 18:20:20 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505931620.56.0.99692323624.issue31533@psf.upfronthosting.co.za> Christian Heimes added the comment: New changeset 19e4d9346db7fb65845b98a9cb9caacaaac8a81a by Christian Heimes (Felipe) in branch 'master': bpo-31533: fix broken link to OpenSSL docs (#3674) https://github.com/python/cpython/commit/19e4d9346db7fb65845b98a9cb9caacaaac8a81a ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 14:20:34 2017 From: report at bugs.python.org (Roundup Robot) Date: Wed, 20 Sep 2017 18:20:34 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505931634.01.0.321581777635.issue31533@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3664 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 14:24:53 2017 From: report at bugs.python.org (Christian Heimes) Date: Wed, 20 Sep 2017 18:24:53 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505931893.38.0.34176053235.issue31533@psf.upfronthosting.co.za> Changes by Christian Heimes : ---------- pull_requests: +3665 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 14:38:10 2017 From: report at bugs.python.org (R. David Murray) Date: Wed, 20 Sep 2017 18:38:10 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1505932690.91.0.981638723141.issue31443@psf.upfronthosting.co.za> R. David Murray added the comment: We do not currently officially support cygwin. There are people working on getting it working again (and having a buildbot) so we can support it, so cygwin support is a goal, but not currently a requirement. I've nosied Erik Brey, who is one of the main people interested in and working on cygwin. The note might well be out of date even with regards to cygwin. ---------- nosy: +erik.bray, r.david.murray _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 16:18:47 2017 From: report at bugs.python.org (bazwal) Date: Wed, 20 Sep 2017 20:18:47 +0000 Subject: [docs] [issue31537] Bug in readline module documentation example Message-ID: <1505938727.72.0.626220071672.issue31537@psf.upfronthosting.co.za> New submission from bazwal: The second example in the readline module docs uses readline.get_history_length() (lines 8 & 14) where it should use readline.get_current_history_length(). ---------- assignee: docs at python components: Documentation messages: 302655 nosy: bazwal, docs at python priority: normal severity: normal status: open title: Bug in readline module documentation example type: behavior versions: Python 3.5, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 16:22:59 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 20 Sep 2017 20:22:59 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505938979.95.0.122036681908.issue31533@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 6b44ad1abdb9b3aaf27e2ba1fc4b69b9a0f50c25 by Mariatta (Miss Islington (bot)) in branch '3.6': bpo-31533: fix broken link to OpenSSL docs (GH-3674) (GH-3675) https://github.com/python/cpython/commit/6b44ad1abdb9b3aaf27e2ba1fc4b69b9a0f50c25 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 16:23:11 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 20 Sep 2017 20:23:11 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505938991.74.0.46730614431.issue31533@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 5b6452d412b5be45f265093e75563fcf6d05dc3e by Mariatta (Christian Heimes) in branch '2.7': bpo-31533: fix broken link to OpenSSL docs (GH-3674) (GH-3676) https://github.com/python/cpython/commit/5b6452d412b5be45f265093e75563fcf6d05dc3e ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 20 16:24:08 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Wed, 20 Sep 2017 20:24:08 +0000 Subject: [docs] [issue31533] Dead link in SSLContext.set_ciphers documentation In-Reply-To: <1505922201.26.0.721036682881.issue31533@psf.upfronthosting.co.za> Message-ID: <1505939048.64.0.541082226327.issue31533@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Fixed and backported. Thanks everyone! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 21 11:27:06 2017 From: report at bugs.python.org (linkid) Date: Thu, 21 Sep 2017 15:27:06 +0000 Subject: [docs] [issue31544] gettext.Catalog title is not flagged as a class Message-ID: <1506007626.15.0.9927755066.issue31544@psf.upfronthosting.co.za> New submission from linkid: In the ``gettext`` documentatino, in the title about the ``Catalog`` constructor, ``Catalog`` is not flagged as a class. ---------- assignee: docs at python components: Documentation messages: 302696 nosy: docs at python, linkid priority: normal severity: normal status: open title: gettext.Catalog title is not flagged as a class type: enhancement versions: Python 2.7, Python 3.3, Python 3.4, Python 3.5, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 21 12:09:25 2017 From: report at bugs.python.org (Utkarsh Upadhyay) Date: Thu, 21 Sep 2017 16:09:25 +0000 Subject: [docs] [issue31545] Fixing documentation for timedelta. Message-ID: <1506010165.72.0.788430347114.issue31545@psf.upfronthosting.co.za> New submission from Utkarsh Upadhyay: There are some instances in the documentation of datetime where the repr of timedelta is mentioned, which was changed in bpo-30302. Am making a PR shortly to address them. ---------- assignee: docs at python components: Documentation messages: 302700 nosy: docs at python, musically_ut priority: normal severity: normal status: open title: Fixing documentation for timedelta. versions: Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 21 12:10:10 2017 From: report at bugs.python.org (Utkarsh Upadhyay) Date: Thu, 21 Sep 2017 16:10:10 +0000 Subject: [docs] [issue31545] Fixing documentation for timedelta. In-Reply-To: <1506010165.72.0.788430347114.issue31545@psf.upfronthosting.co.za> Message-ID: <1506010210.66.0.869934831911.issue31545@psf.upfronthosting.co.za> Changes by Utkarsh Upadhyay : ---------- keywords: +patch pull_requests: +3676 stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 21 12:51:48 2017 From: report at bugs.python.org (Stefan Krah) Date: Thu, 21 Sep 2017 16:51:48 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1506012708.51.0.331813722596.issue31443@psf.upfronthosting.co.za> Changes by Stefan Krah : ---------- keywords: +patch pull_requests: +3678 stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 21 12:58:33 2017 From: report at bugs.python.org (Stefan Krah) Date: Thu, 21 Sep 2017 16:58:33 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1506013113.34.0.128431023015.issue31443@psf.upfronthosting.co.za> Stefan Krah added the comment: Erik, if you are interested in Cygwin, could you please check that xxmodule.c builds on Cygwin with the patch? You need to uncomment a couple of lines in setup.py to build 'xx'. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 21 13:05:06 2017 From: report at bugs.python.org (Stefan Krah) Date: Thu, 21 Sep 2017 17:05:06 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1506013506.2.0.265049969865.issue31443@psf.upfronthosting.co.za> Stefan Krah added the comment: In fact, building _decimal should also fail on Cygwin if this were still an issue. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 21 16:08:59 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Thu, 21 Sep 2017 20:08:59 +0000 Subject: [docs] [issue31153] Update docstrings of itertools functions In-Reply-To: <1502264559.87.0.404253644107.issue31153@psf.upfronthosting.co.za> Message-ID: <1506024539.29.0.70103454999.issue31153@psf.upfronthosting.co.za> Serhiy Storchaka added the comment: For groupby() see also issue27385. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 21 16:45:32 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Thu, 21 Sep 2017 20:45:32 +0000 Subject: [docs] [issue26103] Contradiction in definition of "data descriptor" between (dotted lookup behavior/datamodel documentation) and (inspect lib/descriptor how-to) In-Reply-To: <1452718612.1.0.925403449689.issue26103@psf.upfronthosting.co.za> Message-ID: <1506026731.95.0.293969897058.issue26103@psf.upfronthosting.co.za> Serhiy Storchaka added the comment: The only question is remained -- should *data descriptors* be *descriptors*? I.e. is the __get__ method required for data descriptors? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 21 18:33:39 2017 From: report at bugs.python.org (=?utf-8?q?=C3=89ric_Araujo?=) Date: Thu, 21 Sep 2017 22:33:39 +0000 Subject: [docs] [issue31544] gettext.Catalog title is not flagged as a class In-Reply-To: <1506007626.15.0.9927755066.issue31544@psf.upfronthosting.co.za> Message-ID: <1506033219.15.0.243246708436.issue31544@psf.upfronthosting.co.za> ?ric Araujo added the comment: Are you talking about https://docs.python.org/3/library/gettext.html#the-catalog-constructor ? I think the lack of markup is on purpose, since the text explains that this is a compatibility measure (mostly obsolete nowadays). For future bug reports, please include links or screenshots! They make it easier to communicate. ---------- nosy: +merwok versions: -Python 3.3, Python 3.4, Python 3.5 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 04:39:41 2017 From: report at bugs.python.org (linkid) Date: Fri, 22 Sep 2017 08:39:41 +0000 Subject: [docs] [issue31423] Error while building PDF documentation In-Reply-To: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> Message-ID: <1506069581.36.0.456562764941.issue31423@psf.upfronthosting.co.za> Changes by linkid : ---------- nosy: +linkid _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 05:19:31 2017 From: report at bugs.python.org (linkid) Date: Fri, 22 Sep 2017 09:19:31 +0000 Subject: [docs] [issue31423] Error while building PDF documentation In-Reply-To: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> Message-ID: <1506071971.29.0.266906296858.issue31423@psf.upfronthosting.co.za> Changes by linkid : ---------- keywords: +patch pull_requests: +3680 stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 10:26:41 2017 From: report at bugs.python.org (Christoph Reiter) Date: Fri, 22 Sep 2017 14:26:41 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1506090401.08.0.406828345309.issue31443@psf.upfronthosting.co.za> Christoph Reiter added the comment: Building the following with gcc from msys2 (cygwin) worked fine here: https://bpaste.net/show/0cafd5fa8211 ---------- nosy: +lazka _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 11:32:44 2017 From: report at bugs.python.org (Stefan Krah) Date: Fri, 22 Sep 2017 15:32:44 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1506094364.63.0.524771952034.issue31443@psf.upfronthosting.co.za> Stefan Krah added the comment: Okay, thanks. I found that bz2module.c has also used direct initialization for ages. I'm going to commit the change. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 11:45:00 2017 From: report at bugs.python.org (Stefan Krah) Date: Fri, 22 Sep 2017 15:45:00 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1506095100.36.0.50480594901.issue31443@psf.upfronthosting.co.za> Stefan Krah added the comment: New changeset ca72589bfabe2fd0e12eebfeb770b6c7a499b3e6 by Stefan Krah in branch 'master': bpo-31443: Formulate the type slot initialization rules in terms of C99. (#3688) https://github.com/python/cpython/commit/ca72589bfabe2fd0e12eebfeb770b6c7a499b3e6 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 12:10:05 2017 From: report at bugs.python.org (Stefan Krah) Date: Fri, 22 Sep 2017 16:10:05 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1506096605.83.0.263399558437.issue31443@psf.upfronthosting.co.za> Changes by Stefan Krah : ---------- pull_requests: +3681 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 12:14:15 2017 From: report at bugs.python.org (Stefan Krah) Date: Fri, 22 Sep 2017 16:14:15 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1506096855.58.0.0390045782233.issue31443@psf.upfronthosting.co.za> Stefan Krah added the comment: New changeset b1558a0368949714f5765702a8d83a2d163eaacf by Stefan Krah in branch 'master': bpo-31443: Update included code. (#3697) https://github.com/python/cpython/commit/b1558a0368949714f5765702a8d83a2d163eaacf ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 13:16:59 2017 From: report at bugs.python.org (Zachary Ware) Date: Fri, 22 Sep 2017 17:16:59 +0000 Subject: [docs] [issue31423] Error while building PDF documentation In-Reply-To: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> Message-ID: <1506100619.9.0.0616641402557.issue31423@psf.upfronthosting.co.za> Zachary Ware added the comment: New changeset da9b4cfb488119f2493a762fcb1d85c58494f51d by Zachary Ware (Fran?ois Magimel) in branch 'master': bpo-31423: Fix building the PDF documentation (GH-3693) https://github.com/python/cpython/commit/da9b4cfb488119f2493a762fcb1d85c58494f51d ---------- nosy: +zach.ware _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 13:39:49 2017 From: report at bugs.python.org (Stefan Krah) Date: Fri, 22 Sep 2017 17:39:49 +0000 Subject: [docs] [issue31443] Possibly out of date C extension documentation In-Reply-To: <1505293390.55.0.87127393271.issue31443@psf.upfronthosting.co.za> Message-ID: <1506101989.01.0.119083683731.issue31443@psf.upfronthosting.co.za> Changes by Stefan Krah : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 14:21:59 2017 From: report at bugs.python.org (Zachary Ware) Date: Fri, 22 Sep 2017 18:21:59 +0000 Subject: [docs] [issue31423] Error while building PDF documentation In-Reply-To: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> Message-ID: <1506104519.93.0.06705645739.issue31423@psf.upfronthosting.co.za> Changes by Zachary Ware : ---------- pull_requests: +3683 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 14:22:30 2017 From: report at bugs.python.org (Zachary Ware) Date: Fri, 22 Sep 2017 18:22:30 +0000 Subject: [docs] [issue31423] Error while building PDF documentation In-Reply-To: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> Message-ID: <1506104550.59.0.150659090247.issue31423@psf.upfronthosting.co.za> Changes by Zachary Ware : ---------- pull_requests: +3684 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 14:26:21 2017 From: report at bugs.python.org (Zachary Ware) Date: Fri, 22 Sep 2017 18:26:21 +0000 Subject: [docs] [issue31423] Error while building PDF documentation In-Reply-To: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> Message-ID: <1506104781.43.0.66131428453.issue31423@psf.upfronthosting.co.za> Zachary Ware added the comment: New changeset 6de35849cb7a18bfaad828eb57a2e6caa7978690 by Zachary Ware in branch '3.6': [3.6] bpo-31423: Fix building the PDF documentation (GH-3693) (GH-3699) https://github.com/python/cpython/commit/6de35849cb7a18bfaad828eb57a2e6caa7978690 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 14:41:12 2017 From: report at bugs.python.org (Zachary Ware) Date: Fri, 22 Sep 2017 18:41:12 +0000 Subject: [docs] [issue31423] Error while building PDF documentation In-Reply-To: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> Message-ID: <1506105672.15.0.954757632632.issue31423@psf.upfronthosting.co.za> Zachary Ware added the comment: New changeset da86874a3d8f882d6aedd882b2e27f59b59d6798 by Zachary Ware in branch '2.7': [2.7] bpo-31423: Fix building the PDF documentation (GH-3693) (GH-3700) https://github.com/python/cpython/commit/da86874a3d8f882d6aedd882b2e27f59b59d6798 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 14:43:17 2017 From: report at bugs.python.org (Zachary Ware) Date: Fri, 22 Sep 2017 18:43:17 +0000 Subject: [docs] [issue31423] Error while building PDF documentation In-Reply-To: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> Message-ID: <1506105797.27.0.634319341512.issue31423@psf.upfronthosting.co.za> Zachary Ware added the comment: Pending results of actual builds on docs.p.o, this should be fixed. ---------- resolution: -> fixed stage: patch review -> commit review status: open -> pending _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 22 15:41:08 2017 From: report at bugs.python.org (Ned Deily) Date: Fri, 22 Sep 2017 19:41:08 +0000 Subject: [docs] [issue31423] Error while building PDF documentation In-Reply-To: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> Message-ID: <1506109268.39.0.358606054284.issue31423@psf.upfronthosting.co.za> Ned Deily added the comment: Thanks for looking into this. See also https://github.com/python/psf-salt/issues/118 where the question arose whether the version of Tex Live on docs is new enough. I'm no expert at anything Tex but the odd thing is that I had been able to build dist docs on my current Debian (testing) system without this change. Let's see what happens on docs after the daily full doc build. ---------- nosy: +ned.deily status: pending -> open _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 01:51:11 2017 From: report at bugs.python.org (Ned Deily) Date: Sat, 23 Sep 2017 05:51:11 +0000 Subject: [docs] [issue31423] Error while building PDF documentation In-Reply-To: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> Message-ID: <1506145871.02.0.0746485000875.issue31423@psf.upfronthosting.co.za> Ned Deily added the comment: Good news! It appears that the changes supplied by @linkid have indeed fixed the daily downloadable doc build failures, 3.7, 3.6, and 2.7 docs were built successfully and the 404s are gone. Thanks everyone for helping with this! ---------- stage: commit review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 12:22:48 2017 From: report at bugs.python.org (Dmitry Chestnykh) Date: Sat, 23 Sep 2017 16:22:48 +0000 Subject: [docs] [issue31560] hashlib.blake2: error in example for signed cookies Message-ID: <1506183768.26.0.738126826382.issue31560@psf.upfronthosting.co.za> New submission from Dmitry Chestnykh: The example for creating and verifying signed cookies with hashlib.blake2 doesn't work. Corrected in GitHub PR #3694. ---------- assignee: docs at python components: Documentation messages: 302787 nosy: dchest, docs at python priority: normal pull_requests: 3692 severity: normal status: open title: hashlib.blake2: error in example for signed cookies versions: Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 13:06:26 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sat, 23 Sep 2017 17:06:26 +0000 Subject: [docs] [issue31560] hashlib.blake2: error in example for signed cookies In-Reply-To: <1506183768.26.0.738126826382.issue31560@psf.upfronthosting.co.za> Message-ID: <1506186386.48.0.54287543298.issue31560@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 13:18:43 2017 From: report at bugs.python.org (Benjamin Peterson) Date: Sat, 23 Sep 2017 17:18:43 +0000 Subject: [docs] [issue31560] hashlib.blake2: error in example for signed cookies In-Reply-To: <1506183768.26.0.738126826382.issue31560@psf.upfronthosting.co.za> Message-ID: <1506187123.06.0.454954503088.issue31560@psf.upfronthosting.co.za> Benjamin Peterson added the comment: New changeset aecc08ac3a14a73aa353655bb65ff8d965e935a0 by Benjamin Peterson (Dmitry Chestnykh) in branch 'master': Docs: correct hashlib.blake2 keyed hashing example (bpo-31560) https://github.com/python/cpython/commit/aecc08ac3a14a73aa353655bb65ff8d965e935a0 ---------- nosy: +benjamin.peterson _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 13:19:02 2017 From: report at bugs.python.org (Roundup Robot) Date: Sat, 23 Sep 2017 17:19:02 +0000 Subject: [docs] [issue31560] hashlib.blake2: error in example for signed cookies In-Reply-To: <1506183768.26.0.738126826382.issue31560@psf.upfronthosting.co.za> Message-ID: <1506187142.76.0.83187758611.issue31560@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- keywords: +patch pull_requests: +3693 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 13:27:24 2017 From: report at bugs.python.org (Benjamin Peterson) Date: Sat, 23 Sep 2017 17:27:24 +0000 Subject: [docs] [issue31560] hashlib.blake2: error in example for signed cookies In-Reply-To: <1506183768.26.0.738126826382.issue31560@psf.upfronthosting.co.za> Message-ID: <1506187644.4.0.793831222602.issue31560@psf.upfronthosting.co.za> Benjamin Peterson added the comment: New changeset 5614487378863d14cdbe730b00d6803523abb7ac by Benjamin Peterson (Miss Islington (bot)) in branch '3.6': [3.6] Docs: correct hashlib.blake2 keyed hashing example (bpo-31560) https://github.com/python/cpython/commit/5614487378863d14cdbe730b00d6803523abb7ac ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 13:27:43 2017 From: report at bugs.python.org (Benjamin Peterson) Date: Sat, 23 Sep 2017 17:27:43 +0000 Subject: [docs] [issue31560] hashlib.blake2: error in example for signed cookies In-Reply-To: <1506183768.26.0.738126826382.issue31560@psf.upfronthosting.co.za> Message-ID: <1506187663.09.0.0854080430492.issue31560@psf.upfronthosting.co.za> Changes by Benjamin Peterson : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.6 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 15:02:39 2017 From: report at bugs.python.org (Cheryl Sabella) Date: Sat, 23 Sep 2017 19:02:39 +0000 Subject: [docs] [issue25041] document AF_PACKET socket address format In-Reply-To: <1441804077.41.0.782475265278.issue25041@psf.upfronthosting.co.za> Message-ID: <1506193359.13.0.0778079522476.issue25041@psf.upfronthosting.co.za> Cheryl Sabella added the comment: Hello Camilla, Would you like to create a Github pull request for your patch? ---------- nosy: +csabella _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 17:35:05 2017 From: report at bugs.python.org (Terji) Date: Sat, 23 Sep 2017 21:35:05 +0000 Subject: [docs] [issue31564] NewType can subclass NewType Message-ID: <1506202505.51.0.0282244648775.issue31564@psf.upfronthosting.co.za> New submission from Terji: It has become possible to create a ``NewType`` from an existing ``NewType``, see https://github.com/python/mypy/pull/3465 and https://github.com/python/peps/pull/271. This is a small update to the documentation as a concequence of the above change. ---------- assignee: docs at python components: Documentation messages: 302809 nosy: Petersen, docs at python priority: normal severity: normal status: open title: NewType can subclass NewType type: enhancement versions: Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 17:38:29 2017 From: report at bugs.python.org (Roundup Robot) Date: Sat, 23 Sep 2017 21:38:29 +0000 Subject: [docs] [issue31564] NewType can subclass NewType In-Reply-To: <1506202505.51.0.0282244648775.issue31564@psf.upfronthosting.co.za> Message-ID: <1506202709.62.0.938542665632.issue31564@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- keywords: +patch pull_requests: +3698 stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 22:37:50 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sun, 24 Sep 2017 02:37:50 +0000 Subject: [docs] [issue31564] NewType can subclass NewType In-Reply-To: <1506202505.51.0.0282244648775.issue31564@psf.upfronthosting.co.za> Message-ID: <1506220670.78.0.0869775359568.issue31564@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 039b25d8fd21f8d5d9e3cb536402d952cf068dc1 by Mariatta (topper-123) in branch 'master': bpo-31564: Update typing documentation (GH-3696) https://github.com/python/cpython/commit/039b25d8fd21f8d5d9e3cb536402d952cf068dc1 ---------- nosy: +Mariatta _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 22:38:02 2017 From: report at bugs.python.org (Roundup Robot) Date: Sun, 24 Sep 2017 02:38:02 +0000 Subject: [docs] [issue31564] NewType can subclass NewType In-Reply-To: <1506202505.51.0.0282244648775.issue31564@psf.upfronthosting.co.za> Message-ID: <1506220682.93.0.716725772371.issue31564@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3700 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 22:41:24 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sun, 24 Sep 2017 02:41:24 +0000 Subject: [docs] [issue25041] document AF_PACKET socket address format In-Reply-To: <1441804077.41.0.782475265278.issue25041@psf.upfronthosting.co.za> Message-ID: <1506220884.11.0.252346490977.issue25041@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- stage: patch review -> needs patch versions: +Python 3.7 -Python 3.4, Python 3.5 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 22:46:26 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sun, 24 Sep 2017 02:46:26 +0000 Subject: [docs] [issue31564] NewType can subclass NewType In-Reply-To: <1506202505.51.0.0282244648775.issue31564@psf.upfronthosting.co.za> Message-ID: <1506221186.54.0.575470488302.issue31564@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 018e6b9f696311a65f47f33ea04b7baef3f3664f by Mariatta (Miss Islington (bot)) in branch '3.6': bpo-31564: Update typing documentation (GH-3696) (GH-3715) https://github.com/python/cpython/commit/018e6b9f696311a65f47f33ea04b7baef3f3664f ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 23 22:47:13 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sun, 24 Sep 2017 02:47:13 +0000 Subject: [docs] [issue31564] NewType can subclass NewType In-Reply-To: <1506202505.51.0.0282244648775.issue31564@psf.upfronthosting.co.za> Message-ID: <1506221233.57.0.973142689141.issue31564@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Thanks Terji! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 03:31:30 2017 From: report at bugs.python.org (Daisuke Miyakawa) Date: Sun, 24 Sep 2017 07:31:30 +0000 Subject: [docs] [issue31567] Inconsistent documentation around decorators Message-ID: <1506238290.29.0.485453330645.issue31567@psf.upfronthosting.co.za> New submission from Daisuke Miyakawa: I can see inconsistency in library documentation around functions that are suitable for decorators. I'd like to clarify if it is based on my misunderstanding, or a real documentation problem. Examples: - https://docs.python.org/3/library/functions.html#staticmethod - https://docs.python.org/3/library/functools.html#functools.lru_cache Both staticmethod() and functools.lru_cache() are used with decorator expressions, while they have slightly different explanations. The first one looks like just a usual function while the detailed explanations say it is used with decorator expression. The second one is what I don't understand; it says "@functools.lru_cache()", where the function name is "decorated" with @ in the doc. What does @ mean here? If there's some meaning, the next question is, why doc for staticmethod() (and classmethod() in the same page) does not have it? I don't know which is better, but I believe consistency is good. Some other examples : - https://docs.python.org/3/library/contextlib.html?highlight=decorator -> @ here - https://docs.python.org/3/library/unittest.mock.html#unittest.mock.patch -> no @ here - https://docs.python.org/2.7/library/functools.html#functools.lru_cache -> Old functools does not have @ ---------- assignee: docs at python components: Documentation messages: 302830 nosy: dmiyakawa, docs at python priority: normal severity: normal status: open title: Inconsistent documentation around decorators type: behavior versions: Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 07:44:44 2017 From: report at bugs.python.org (=?utf-8?q?Stefan_Gr=C3=B6nke?=) Date: Sun, 24 Sep 2017 11:44:44 +0000 Subject: [docs] [issue31569] inconsistent case of PCbuild/ directory Message-ID: <1506253484.65.0.417946556883.issue31569@psf.upfronthosting.co.za> New submission from Stefan Gr?nke: While reading the build documentation for Windows, I've noticed the `PCbuild/` directory to be mentioned with a different case than the directory in the repository (`PCBuild/` instead of `PCbuild/`). Every occasion of `PCBuild` should be replaced with `PCbuild`, so that builds can work on case-sensitive filesystems as well. ---------- assignee: docs at python components: Build, Documentation, Windows messages: 302851 nosy: docs at python, gronke, paul.moore, steve.dower, tim.golden, zach.ware priority: normal pull_requests: 3704 severity: normal status: open title: inconsistent case of PCbuild/ directory type: enhancement versions: Python 2.7, Python 3.3, Python 3.4, Python 3.5, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 07:51:24 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Sun, 24 Sep 2017 11:51:24 +0000 Subject: [docs] [issue31569] inconsistent case of PCbuild/ directory In-Reply-To: <1506253484.65.0.417946556883.issue31569@psf.upfronthosting.co.za> Message-ID: <1506253884.87.0.969971201001.issue31569@psf.upfronthosting.co.za> Serhiy Storchaka added the comment: Wouldn't be easier to make changes in the opposite direction? Change PCbuild to PCBuild? The file systems on Windows are case-insensitive, so this hardly an error. ---------- nosy: +serhiy.storchaka _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 08:37:51 2017 From: report at bugs.python.org (Paul Moore) Date: Sun, 24 Sep 2017 12:37:51 +0000 Subject: [docs] [issue31569] inconsistent case of PCbuild/ directory In-Reply-To: <1506253484.65.0.417946556883.issue31569@psf.upfronthosting.co.za> Message-ID: <1506256671.74.0.833889459919.issue31569@psf.upfronthosting.co.za> Paul Moore added the comment: I would strongly prefer the docs to be changed to match the implementation rather than the other way round. However, I don't see the use case for this - what case sensitive filesystem would anybody be building the Windows version of Python on? I'm -1 on changing the actual build scripts, as that introduces risk for no actual benefit. I'm +0 on changing the docs, assuming it's possible to make things consistent with a doc-only change. But I can't imagine anyone reading those docs would expect a filesystem to be case sensitive, so I doubt it would matter in practice. ---------- _______________________________________ Python tracker _______________________________________ From a.severjan at gmail.com Sun Sep 17 13:02:13 2017 From: a.severjan at gmail.com (Artemis Severjan) Date: Sun, 17 Sep 2017 20:02:13 +0300 Subject: [docs] EPUB docs Message-ID: Hi! The EPUB link to documentation doesn't work. https://docs.python.org/3.6/archives/python-3.6.2-docs.epub -------------- next part -------------- An HTML attachment was scrubbed... URL: From abel.damtew at gmail.com Tue Sep 19 06:43:00 2017 From: abel.damtew at gmail.com (abel damtew) Date: Tue, 19 Sep 2017 13:43:00 +0300 Subject: [docs] Problem with downloading Python 3.6.3rc1 Documentation Message-ID: <74149833-890F-43A1-B84B-380747935E46@gmail.com> hello I am getting 404 Not Found error when I am tring to download Python 3.6.3rc1 Documentation. -------------------------------------------------------- Abel Damtew Tefera PhD Candidate, Software Engineering IT Doctoral Program Addis Ababa University Mobile: +251-91-1899669 Email: abel.damtew at gmail.com, abel.damtew at icloud.com P.O.Box: 80771, Addis Ababa, Ethiopia -------------- next part -------------- An HTML attachment was scrubbed... URL: From aero.maxx.d at gmail.com Sun Sep 17 16:06:18 2017 From: aero.maxx.d at gmail.com (Aero Maxx D) Date: Sun, 17 Sep 2017 21:06:18 +0100 Subject: [docs] Broken links on /*/download.html Message-ID: Hello, The download links to the documentation on the following pages are broken. https://docs.python.org/2/download.html https://docs.python.org/3/download.html Thanks, Daniel Sent from my iPhone From alexbleakley at gmail.com Thu Sep 14 18:23:37 2017 From: alexbleakley at gmail.com (Alex Bleakley) Date: Thu, 14 Sep 2017 16:23:37 -0600 Subject: [docs] 404 when trying to download documentation Message-ID: Hey guys, I get a 404 whenever I click any of the download links on this page: https://docs.python.org/3/download.html Thanks, Alex -------------- next part -------------- An HTML attachment was scrubbed... URL: From Andrew.Spiers at csiro.au Mon Sep 18 02:49:22 2017 From: Andrew.Spiers at csiro.au (Andrew.Spiers at csiro.au) Date: Mon, 18 Sep 2017 06:49:22 +0000 Subject: [docs] links at https://docs.python.org/3/download.html are returning 404. Message-ID: Hi, the links to documents eg the PDF version of python 3.6.2 documentation, are returning 404 for me. Regards, Andrew Spiers -------------- next part -------------- An HTML attachment was scrubbed... URL: From arcot.abidali at gmail.com Wed Sep 20 04:18:14 2017 From: arcot.abidali at gmail.com (Abid Ali) Date: Wed, 20 Sep 2017 13:48:14 +0530 Subject: [docs] documentation are not able to downloaded Message-ID: <59c22449.cc36240a.3cc73.487d@mx.google.com> I had tried many times to download documentation but it is not able to download.it showing that ?404 not found?? -------------- next part -------------- An HTML attachment was scrubbed... URL: From arjunsatarkar3 at gmail.com Fri Sep 22 06:22:57 2017 From: arjunsatarkar3 at gmail.com (Arjun Satarkar) Date: Fri, 22 Sep 2017 15:52:57 +0530 Subject: [docs] Download links broken Message-ID: All the download links on this page (https://docs.python.org/3/download.html) for the documentation are broken, they result in 404 not found pages. Please fix this. Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ayushkhare93 at gmail.com Tue Sep 19 11:41:28 2017 From: ayushkhare93 at gmail.com (ayush khare) Date: Tue, 19 Sep 2017 21:11:28 +0530 Subject: [docs] Download Python 3.6.3rc1 Documentation - 404 Not Found Message-ID: -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: py.png Type: image/png Size: 94030 bytes Desc: not available URL: From bpcain at verizon.net Mon Sep 18 19:12:47 2017 From: bpcain at verizon.net (Brendan Cain) Date: Mon, 18 Sep 2017 19:12:47 -0400 Subject: [docs] Documentation Download Errors Message-ID: Hello, I am trying to download the Python 2.7 documentation at https://docs.python.org/2.7/download.html All 8 links (4 .zip and 4 .tar.bz2) are giving me 404 errors. Please advise. I am primarily interested in the US-Letter PDF and HTML formats, with either compression method. I tried the same with the 3.6.2 files and am getting the same results. Thanks, Brendan Cain bpcain at verizon.net From brawojasiu at o2.pl Tue Sep 19 12:19:21 2017 From: brawojasiu at o2.pl (=?UTF-8?Q?=C5=81ukasz?=) Date: Tue, 19 Sep 2017 18:19:21 +0200 Subject: [docs] =?utf-8?q?Python_-_documentation?= Message-ID: <7ca58190b3d14461b8774fb9912afa2e@grupawp.pl> Hello, Links on this page - docs.python.org docs.python.org - ale dead. 404 Not Found in every link. Lukas -------------- next part -------------- An HTML attachment was scrubbed... URL: From Catherine.A.Kubitschek.2 at nd.edu Tue Sep 19 15:50:55 2017 From: Catherine.A.Kubitschek.2 at nd.edu (Catherine Kubitschek) Date: Tue, 19 Sep 2017 15:50:55 -0400 Subject: [docs] Downloading Python 3 documentation Message-ID: Links on https://docs.python.org/3/download.html are broken. I know I tried the .zip, epub, and the top .tar files. Catherine -------------- next part -------------- An HTML attachment was scrubbed... URL: From coryforer at gmail.com Sun Sep 17 01:14:10 2017 From: coryforer at gmail.com (Cory Forer) Date: Sun, 17 Sep 2017 05:14:10 +0000 Subject: [docs] 404 Not Found on Download Page Message-ID: Good Afternoon, I am attempting to download the .zip of the 3.6.2 python docs PDF (US-Letter paper size). When trying to do this I received a 404 Not Found. Would it be possible for someone to send this to me or let me know when the 404 is resolved? Much appreciated!!! -------------- next part -------------- An HTML attachment was scrubbed... URL: From d.ponomarenko at usptech.kiev.ua Thu Sep 14 08:59:39 2017 From: d.ponomarenko at usptech.kiev.ua (=?utf-8?B?0J/QvtC90L7QvNCw0YDQtdC90LrQviDQlNC10L3QuNGB?=) Date: Thu, 14 Sep 2017 15:59:39 +0300 (EEST) Subject: [docs] 404 Not Found Message-ID: <1615752585.20233.1505393979541.JavaMail.zimbra@usptech.kiev.ua> Hello! When I trying download any doc at https://docs.python.org/2/download.html, I get: "404 Not Found" From daemonview at gmail.com Wed Sep 20 19:26:24 2017 From: daemonview at gmail.com (CJ View) Date: Thu, 21 Sep 2017 06:26:24 +0700 Subject: [docs] Docs page error Message-ID: Hi Python Docs Team, I am trying to download Python 3.6 docs but all the links in the table led to the "file not found" error. The URL of the page is https://docs.python.org/3.6/download.html. Please help fixing it. For now, I am still using the 3.5 version docs. Thank you, Chatchawarn Jirupathum daemonview at gmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From danila.stivrinsh at iqoption.com Mon Sep 18 14:00:49 2017 From: danila.stivrinsh at iqoption.com (Danila Stivrinsh) Date: Mon, 18 Sep 2017 21:00:49 +0300 Subject: [docs] 404 for all download links on https://docs.python.org/3/download.html Message-ID: 404 for all download links on https://docs.python.org/3/download.html From Darren.Watson at nexusrental.co.uk Fri Sep 15 04:43:45 2017 From: Darren.Watson at nexusrental.co.uk (Darren Watson) Date: Fri, 15 Sep 2017 08:43:45 +0000 Subject: [docs] Documentation Download Links Broken Message-ID: <5B64B29FF1938F449E142A43F83FF0F3C21DED35@NEXUS-MAIL.NEXUSRENTAL.local> Hi The documentation download links are not working, just giving a 404 error: https://docs.python.org/3/archives/python-3.6.2-docs-pdf-a4.zip On this page: [cid:image001.png at 01D32E07.1F35E1B0] Thanks, Darren Watson IT DevOps Engineer Nexus Vehicle Rental Nexus House 2 Owlcotes Court 141 Richardshaw Lane Leeds, LS28 6AA www.nexusrental.co.uk [top11] [cid:image002.jpg at 01D2971F.1224D5F0] Quality & Security - We have certifications in the ISO 9001:2008 Quality Management and ISO 27001:2013 Information Security Management standards. Customer Service - Winner of the 'Best Customer Focus' award at the Best Business Awards 2017. Innovation - Winner of the 'Best Innovation' award at the Best Business Awards 2017. Professional Development - Named in the 'Centrica Top 100 Apprenticeship Employer List' 2016. This Message and any attachments are for the named recipient's use only. They may contain confidential, proprietary or legally privileged information. No confidentiality or privilege is waived or lost by any wrong transmission. If you are not the intended recipient or have received this message in error, please delete it and all copies of it from your system, destroy any hard copies of it and notify the sender immediately. You must not directly or indirectly, use, disclose, distribute, print or copy any part of this message or any attachments if you are not the intended recipient. Any views expressed in this message or any attachments are those of the individual sender, except where otherwise stated and the sender is authorised to state them to be the views of any such entity. Nexus Vehicle Rental is a trading name of Nexus Vehicle Management Ltd, a company registered in England and Wales. Registration. No. 03833617. Registered office: Nexus House, 2 Owlcotes Court, 141 Richardshaw Lane, Leeds, LS28 6AA. UK VAT No. 228 5101 30. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 56952 bytes Desc: image001.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 4847 bytes Desc: image002.jpg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.jpg Type: image/jpeg Size: 5396 bytes Desc: image003.jpg URL: From devjaylogan at outlook.com Wed Sep 13 14:02:14 2017 From: devjaylogan at outlook.com (Jay Logan) Date: Wed, 13 Sep 2017 18:02:14 +0000 Subject: [docs] All download links broken Message-ID: Hello, Every download link on the Documentation page at this URL is broken with a 404 error: https://docs.python.org/3/download.html Just thought you would like to know that. Thanks, - Jay -------------- next part -------------- An HTML attachment was scrubbed... URL: From dharmesh.gangwar at gmail.com Wed Sep 13 16:33:44 2017 From: dharmesh.gangwar at gmail.com (dgangwar) Date: Wed, 13 Sep 2017 21:33:44 +0100 Subject: [docs] Document links are broken Message-ID: Hi, Document links are broken. Could you please have some one to look into this issue? -- Thanks & Regards Dharmesh Gangwar -------------- next part -------------- An HTML attachment was scrubbed... URL: From eldrad.ulthran at o2online.de Fri Sep 15 04:35:00 2017 From: eldrad.ulthran at o2online.de (Maxim Gawrilow) Date: Fri, 15 Sep 2017 10:35:00 +0200 Subject: [docs] Downloadable Doc not found Message-ID: Dear Sir or Madam, I'd like to download the Python Tutorial from https://docs.python.org/3/download.html, but all I get is "404 not found", no matter which of the archives I try to download. I would be very glad if you could provide me with an offline version. With kind regards, ??? Maxim Gawrilow From frank.secada at gmail.com Thu Sep 14 10:37:39 2017 From: frank.secada at gmail.com (Frank Secada) Date: Thu, 14 Sep 2017 10:37:39 -0400 Subject: [docs] python documentation download links Message-ID: When are these links going to be fixed? https://docs.python.org/3/download.html I can't download either the pdf or html zips. -------------- next part -------------- An HTML attachment was scrubbed... URL: From ftghvbfg at gmail.com Thu Sep 21 05:00:35 2017 From: ftghvbfg at gmail.com (ABC DEF) Date: Thu, 21 Sep 2017 09:00:35 +0000 Subject: [docs] PDF manual on Python 2.7 in A4 does not load Message-ID: Hello, the PDF manual on Python 2.7 in A4 paper size ( https://docs.python.org/2/download.html) does not load, can you do it available? The same is about manual 2.7 in HTML. Thanks a lot. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gabriela.gibson at gmail.com Wed Sep 13 17:35:20 2017 From: gabriela.gibson at gmail.com (Gabriela Gibson) Date: Wed, 13 Sep 2017 22:35:20 +0100 Subject: [docs] Trying to download the 3.62 docs as pdf and getting 404 Message-ID: This is all on this page: https://docs.python.org/3/download.html kind regards, G -- The best MUD on the Interwebs: http://www.mozartmud.net Visit my Coding Diary: http://gabriela-gibson.blogspot.com/ From george.robson at syniverse.com Fri Sep 15 10:45:59 2017 From: george.robson at syniverse.com (George Robson) Date: Fri, 15 Sep 2017 14:45:59 +0000 Subject: [docs] links on https://docs.python.org/3/download.html are all broken Message-ID: <5906229E20A151458747FB6C919CD28F8F60F751@CHI1MBX01.ad.syniverse.com> https://docs.python.org/3/download.html This message and its contents (including any accompanying documents) are confidential and authorized solely for the intended addressee(s). If you have erroneously received this message, please immediately and permanently delete all instances and notify the sender. Also, if you are not the intended recipient, you are hereby notified that any disclosure, copying, distribution or taking any action in reliance on this message or its contents is strictly prohibited. The company is not responsible for any loss or damage caused by a virus or for any errors or omissions in the contents of this message. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gert at distillique.co.za Wed Sep 20 17:59:26 2017 From: gert at distillique.co.za (Gert M Bosman) Date: Wed, 20 Sep 2017 23:59:26 +0200 Subject: [docs] Problem downloading Python docs. Message-ID: <006b01d3325b$b9c451a0$2d4cf4e0$@distillique.co.za> Hi docs at python.org , Im'm trying to download the .zip file for the Python 3.6.3rc1 Documentation from https://docs.python.org/3/download.html. However, All the links in the Download table lead to Error "404 Not found" Any idea where I can download the PDF (A4 paper size) document in .zip format? Kind regards, Gert Gert M Bosman -------------- next part -------------- An HTML attachment was scrubbed... URL: From haibo1047 at 163.com Tue Sep 19 08:46:55 2017 From: haibo1047 at 163.com (163) Date: Tue, 19 Sep 2017 20:46:55 +0800 Subject: [docs] Issues with downloading python 3.6 documentation Message-ID: <04140DCA-CB34-4913-A395-AA46BCD3480E@163.com> Hi I tried to download document in below page, but it shows 404. https://docs.python.org/3/download.html Could you please take a look? Thanks. Regards Harper -------------- next part -------------- An HTML attachment was scrubbed... URL: From hzlee73 at gmail.com Wed Sep 6 19:30:30 2017 From: hzlee73 at gmail.com (HyuckJae Lee) Date: Wed, 06 Sep 2017 23:30:30 -0000 Subject: [docs] (no subject) Message-ID: <59b08512.0650650a.640b8.2a5f@mx.google.com> Hi This URL doesn?t work. https://docs.python.org/3/archives/python-3.6.2-docs-pdf-a4.zip Please take fix it. Thanks. Windows 10? ???? ?? -------------- next part -------------- An HTML attachment was scrubbed... URL: From idlogin97 at gmail.com Sat Sep 16 23:16:17 2017 From: idlogin97 at gmail.com (=?UTF-8?B?UGhhbiBI4buTbmcgTmFt?=) Date: Sat, 16 Sep 2017 20:16:17 -0700 Subject: [docs] [Can't not download document] Message-ID: - All links are died, I can?t download any documents ? - Link: https://docs.python.org/3/download.html Look forward to hearing from you Thanks!!!! -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: 2017-09-17.png Type: image/png Size: 56712 bytes Desc: not available URL: From j.sathishmdu at gmail.com Sun Sep 17 02:09:32 2017 From: j.sathishmdu at gmail.com (sathish j) Date: Sun, 17 Sep 2017 11:39:32 +0530 Subject: [docs] Unable to download docs for python 3.6.2 Message-ID: [image: Inline image 1] Regards, J.Sathish Babu. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image.png Type: image/png Size: 62670 bytes Desc: not available URL: From ja at franz.com Sun Sep 17 04:02:09 2017 From: ja at franz.com (jans aasman) Date: Sun, 17 Sep 2017 01:02:09 -0700 Subject: [docs] the download of the reference manuals return 404 Message-ID: check for yourself at https://docs.python.org/3/download.html From joe-devine at att.net Wed Sep 13 16:26:46 2017 From: joe-devine at att.net (Joseph Devine) Date: Wed, 13 Sep 2017 16:26:46 -0400 Subject: [docs] documentation link returns error 404, file not found Message-ID: <000001d32cce$9fce7830$df6b6890$@att.net> On: https://docs.python.org/3/download.html Clicking on any of the .zip hyperlinks gets an error page. Is it my computer or your website? Regards, Joe -------------- next part -------------- An HTML attachment was scrubbed... URL: From jrock1290 at gmail.com Sat Sep 16 18:15:56 2017 From: jrock1290 at gmail.com (Josh Rockman) Date: Sat, 16 Sep 2017 15:15:56 -0700 Subject: [docs] Downloading Python Documentation 2.7 Message-ID: <2C4203A8-5F98-4DB2-9F24-0E3D4B673993@gmail.com> I keep getting "404 not found" when attempting to download the docs for Python 2.7. Any help would be appreciated. Thanks, Josh Sent from my iPad From kkozek at gmail.com Wed Sep 6 00:09:36 2017 From: kkozek at gmail.com (Krzysztof Kozek) Date: Wed, 06 Sep 2017 04:09:36 -0000 Subject: [docs] (no subject) Message-ID: Dear Sir/Madam, URL: https://docs.python.org/3/download.html Download Python 3.6.2 Documentation *Last updated on: Sep 06, 2017.* To download an archive containing all the documents for this version of Python in one of various formats, follow one of links in this table. The numbers in the table are the size of the download files in megabytes. FormatPacked as .zipPacked as .tar.bz2 PDF (US-Letter paper size) Download (ca. 13 MB) Download (ca. 13 MB) PDF (A4 paper size) Download (ca. 13 MB) Download (ca. 13 MB) HTML Download (ca. 9 MB) Download (ca. 6 MB) Plain Text Download (ca. 3 MB) Download (ca. 2 MB) EPUB Download (ca. 5.5 MB) Table contains broken liks, eg: https://docs.python.org/3/archives/python-3.6.2-docs-html.zip They go into 404 Could you please advise where can I find downloadable version of Python documentation? I just got advised that we will experience ISP outage on Fri 8 Sep 2017, so I need offline copy of Python documentation. Your sincerely, Krzysztof Kozek. -------------- next part -------------- An HTML attachment was scrubbed... URL: From kmsnyder2 at verizon.net Wed Sep 20 08:03:17 2017 From: kmsnyder2 at verizon.net (Karl) Date: Wed, 20 Sep 2017 08:03:17 -0400 Subject: [docs] Download Docs "404" Error Message-ID: <15e9f2bbe14-c09-dcfa@webjas-vad162.srv.aolmail.net> Good Morning, Is the Python documentation, in PDF format, no longer available? All I get is a "404 Not Found (nginx)" error when being directed to he below link from https://docs.python.org/3/download.html. Thanks. https://docs.python.org/3/archives/python-3.6.3rc1-docs-pdf-letter.zip Regards, Karl -------------- next part -------------- An HTML attachment was scrubbed... URL: From larissa.patriciovalerio at csiro.au Fri Sep 15 03:27:42 2017 From: larissa.patriciovalerio at csiro.au (Larissa Patricio Valerio) Date: Fri, 15 Sep 2017 17:27:42 +1000 Subject: [docs] Download files not working Message-ID: <513fa8b3-1200-61ff-2f86-d445e91a410b@csiro.au> Hi I've tried to download the documentation pack in https://docs.python.org/2/download.html but none of the links are working, leading to a page with: 404 Not Found Any suggestion on how to download it? Cheers Larissa Patricio Valerio PhD Student James Cook University CSIRO Aquatic Remote Sensing Group Ecosciences Precint, Brisbane 07 3833 5604 | 04 8433 8976 -------------- next part -------------- An HTML attachment was scrubbed... URL: From lidderupk at gmail.com Sun Sep 17 13:12:12 2017 From: lidderupk at gmail.com (UL) Date: Sun, 17 Sep 2017 10:12:12 -0700 Subject: [docs] unable to download docs Message-ID: Hi, I am unable to download documentation at: https://docs.python.org/3/download.html I get a 404 for all formats. Thanks, Upkar. -------------- next part -------------- An HTML attachment was scrubbed... URL: From LonsdaleMa at sdcc.net Thu Sep 7 06:06:31 2017 From: LonsdaleMa at sdcc.net (Matthew Lonsdale) Date: Thu, 07 Sep 2017 10:06:31 -0000 Subject: [docs] bug Message-ID: <0A74263BB874FB4F8BAD9402CFB11C4D27F527BD@SDCC-MBX1.sdcc.local> found bug older code stops working Stoke Damerel Community College is part of Inspiring Schools Partnership Multi Academy Trust. Inspiring Schools Partnership is a Company Limited by Guarantee(England and Wales) Company No 7557634 and an Exempt Charity. Registered Address: Stoke Damerel Community College, Somerset Place, Plymouth. PL3 4 BD. For more details see http://www.sdcc.net This email and any attachments is intended for the addressee only. It may contain confidential, proprietary or legally privileged information and any views or opinions presented are solely those of the author. If you are not the addressee you have received this e-mail in error. Please notify the sender by return e-mail and then destroy it. If you have received this e-mail in error, copying, printing, forwarding or dissemination of this e-mail is strictly prohibited. Protected by Sophos EMA -------------- next part -------------- An HTML attachment was scrubbed... URL: From ltratcliff at gmail.com Thu Sep 14 14:02:30 2017 From: ltratcliff at gmail.com (Tom Ratcliff) Date: Thu, 14 Sep 2017 14:02:30 -0400 Subject: [docs] Python 3.6 Documentation download link not working Message-ID: https://docs.python.org/3.6/archives/python-3.6.2-docs-html.zip is returning a 404 for me (as well as 3.6, 3.6.1) Thanks! -------------- next part -------------- An HTML attachment was scrubbed... URL: From mail at debewerkingamsterdam.nl Sun Sep 17 02:39:38 2017 From: mail at debewerkingamsterdam.nl (De Bewerking / Peter Heijink) Date: Sun, 17 Sep 2017 08:39:38 +0200 Subject: [docs] documentation download: page not found 404 Message-ID: <1ba36be2-1007-bc65-4115-af645f6fbcdc@debewerkingamsterdam.nl> Hi there just to inform you: I tried to download the documentation in PDF (zip or tar.bz2), via link on page https://docs.python.org/3/download.html and got a 404 error -- Met vriendelijke groet, De Bewerking 06.11.39.42.45 (tel/SMS) www.debewerkingamsterdam.nl KvK 33276069 Peter Heijink -------------- next part -------------- An HTML attachment was scrubbed... URL: From malte.forkel at berlin.de Wed Sep 6 12:21:32 2017 From: malte.forkel at berlin.de (Malte Forkel) Date: Wed, 06 Sep 2017 16:21:32 -0000 Subject: [docs] =?utf-8?q?Dangling_reference_to_=E2=80=9CUser-defined_met?= =?utf-8?b?aG9kc+KAnQ==?= Message-ID: Hello, The English documentation for Python 3.6.2 on the standard type hierarchy [1] ends with a paragraph titled "Class method objects". It includes the sentence ?? The behaviour of class method objects upon such retrieval is described above, under ?User-defined methods? That section exists in the documentation for Python 2.7.14rc [2]. In the documentation for Python 3.6.2, the section has been renamed to "Instance methods". The term "user-defined method" is still used in that section and in the paragraph titled "Static method objects", though. Cheers, Malte [1] https://docs.python.org/3/reference/datamodel.html#the-standard-type-hierarchy [2] https://docs.python.org/2/reference/datamodel.html#the-standard-type-hierarchy From markwalters2075 at gmail.com Sun Sep 17 04:19:46 2017 From: markwalters2075 at gmail.com (Mark Walters) Date: Sun, 17 Sep 2017 02:19:46 -0600 Subject: [docs] Missing files Message-ID: <7359a1d4-d0f2-d946-937e-c3828c0d572b@gmail.com> None of the documentation downloads are available.? An example of this is: https://docs.python.org/3.7/archives/python-3.7.0a0-docs-pdf-a4.zip From Matt.funke at VPGSensors.com Fri Sep 22 09:19:25 2017 From: Matt.funke at VPGSensors.com (Funke, Matt) Date: Fri, 22 Sep 2017 13:19:25 +0000 Subject: [docs] Dowloadable Documentation for 2.7.14 Message-ID: <2876D4BDA747384DAAD36E18FDE06891A5548D4A@WSWD97.vishaypg.com> The links to downloadable PDF documentation for 2.7.14 seem to be dead. Could you restore them, please? Matt Funke Senior Programmer/Analyst | VPG 951 Wendell Blvd | Wendell, NC 27591 USA Office: 919-374-5779 Mobile: 919-628-9261 Fax: 919-374-5248 vpgsensors.com [http://vpgweb.vpgsensors.com/MarCom/REBRANDING%20%20%20Templates%20Forms%20and%20Logos/VPG-Corporate-Email-Signature-Image/VPG-Corporate-email-signagure-small.jpg] -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 12328 bytes Desc: image001.jpg URL: From mattandelmore at gmail.com Sun Sep 17 23:08:18 2017 From: mattandelmore at gmail.com (mattandelmore at gmail.com) Date: Sun, 17 Sep 2017 20:08:18 -0700 Subject: [docs] Documentation Download Links Not Accessible Message-ID: <001a01d3302b$6323e4a0$296bade0$@gmail.com> Python Documentation, Is there a problem with the documentation download links at the moment? I tried all of them and reached 404 not found. Can you send me the python 3.6.2 documentation in US-Letter PDF? Best Regards, Matt -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.jpg Type: image/jpeg Size: 101187 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.jpg Type: image/jpeg Size: 31772 bytes Desc: not available URL: From mh.zirie at gmail.com Fri Sep 15 14:44:56 2017 From: mh.zirie at gmail.com (Mahmoud Zirie) Date: Fri, 15 Sep 2017 23:44:56 +0500 Subject: [docs] broken links Message-ID: Hello . And thanks for all your hard work but i have experience some broken links (all the downloading links) for python 3 reference Thanks you -------------- next part -------------- An HTML attachment was scrubbed... URL: From microonde at protonmail.com Wed Sep 20 11:03:40 2017 From: microonde at protonmail.com (Microonde) Date: Wed, 20 Sep 2017 11:03:40 -0400 Subject: [docs] Docs archives are missing Message-ID: Good evening, i'd like to inform you docs archives are 404 not found. Could you please re-upload them? https://docs.python.org/3/download.html thanks. Microonde -------------- next part -------------- An HTML attachment was scrubbed... URL: From miguel.j.montoya at ve.pwc.com Fri Sep 15 16:38:23 2017 From: miguel.j.montoya at ve.pwc.com (miguel.j.montoya at ve.pwc.com) Date: Fri, 15 Sep 2017 16:38:23 -0400 Subject: [docs] (no subject) Message-ID: Hello Python Docs Team, when trying to download the Python 3.6.2 Documentation on the following url: https://docs.python.org/3/download.html When I try to download any package (PDF, HTML format, etc) I get (This is the link from the file: https://docs.python.org/3/archives/python-3.6.2-docs-pdf-letter.zip): 404 Not Found nginx Where is the files? ______________________________________________________________________ The information transmitted, including any attachments, is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited, and all liability arising therefrom is disclaimed. If you received this in error, please contact the sender and delete the material from any computer. -------------- next part -------------- An HTML attachment was scrubbed... URL: From misc at brooker.org.uk Thu Sep 21 00:33:26 2017 From: misc at brooker.org.uk (Mark Brooker) Date: Wed, 20 Sep 2017 23:33:26 -0500 Subject: [docs] 404 on all https://docs.python.org/3/download.html links Message-ID: <201709202333.26124.misc@brooker.org.uk> Hi, I just tried to download a copy of the python docs and got 404 errors for all formats and all packings. Could you create a .mobi format download as well? Calibre can convert from epub to mobi but the result is often unsatisfactory and I prefer reading doc on my kindle. It's not always as convenient as a paper book but is superior in many ways. -- Regards, Mark. From misc at brooker.org.uk Thu Sep 21 00:35:51 2017 From: misc at brooker.org.uk (Mark Brooker) Date: Wed, 20 Sep 2017 23:35:51 -0500 Subject: [docs] Fwd: 404 on all https://docs.python.org/3/download.html links Message-ID: <201709202335.51605.misc@brooker.org.uk> Sorry, I should have mentioned the version: I got the errors on all the version 3.6 download links. 3.5 worked fine. It would still be useful to have the doc available in .mobi format. -- Regards, Mark. -------------- next part -------------- An embedded message was scrubbed... From: Mark Brooker Subject: 404 on all https://docs.python.org/3/download.html links Date: Wed, 20 Sep 2017 23:33:26 -0500 Size: 800 URL: From mplaskett at live.com Mon Sep 18 18:47:10 2017 From: mplaskett at live.com (michael plaskett) Date: Mon, 18 Sep 2017 22:47:10 +0000 Subject: [docs] 404 error Message-ID: While trying to download any pyton docs I get a 404 error Is pose to happen? Can you send me the correct link Sent from Mail for Windows 10 -------------- next part -------------- An HTML attachment was scrubbed... URL: From mtn.solomon at gmail.com Sun Sep 24 08:22:59 2017 From: mtn.solomon at gmail.com (Matan Solomon) Date: Sun, 24 Sep 2017 15:22:59 +0300 Subject: [docs] Mistake in the documentation of bisect in python 2 Message-ID: hi guys, the doc says that bisect.bisect is bisect.bisect_left when it's actually bisect.biscet_right. (I've run assert bisect.bisect == bisect.bisect_right) this is a small error but it breaks the code examples in the page. i'm using python 2.7.13. cheers, Matan -------------- next part -------------- An HTML attachment was scrubbed... URL: From Norene.Graham at netapp.com Fri Sep 15 17:03:31 2017 From: Norene.Graham at netapp.com (Graham, Norene) Date: Fri, 15 Sep 2017 21:03:31 +0000 Subject: [docs] documentation download - 404 Not Found Message-ID: Just FYI -- The documentation download links are broken/unavailable at https://docs.python.org/3/download.html -- getting "404 Not Found" web page. Thanks, Norene From pal.subbiah at live.com Fri Sep 15 10:51:48 2017 From: pal.subbiah at live.com (Pal Subbiah) Date: Fri, 15 Sep 2017 14:51:48 +0000 Subject: [docs] Document Download Error Message-ID: The documentation download links are giving 404 errors. Regards, Pal From paul.houle at ontology2.com Thu Sep 21 16:00:49 2017 From: paul.houle at ontology2.com (Paul Houle) Date: Thu, 21 Sep 2017 20:00:49 +0000 Subject: [docs] Busted links Message-ID: Hi, I am a regular user of the Python documentation and wanted to have a copy to download to my tablet to view when I am not connected to the internet. As of this moment, none of the download links on https://docs.python.org/3/download.html work for me: I get something like "404 Not Found / nginx". Could you please fix this? -------------- next part -------------- An HTML attachment was scrubbed... URL: From phanthienluc at gmail.com Sun Sep 17 02:56:46 2017 From: phanthienluc at gmail.com (Luc PHAN) Date: Sun, 17 Sep 2017 08:56:46 +0200 Subject: [docs] Broken links: Download Python 3.6.2 Documentation Message-ID: Hello, The download links are broken : https://docs.python.org/3/download.html Have a nice day. -------------- next part -------------- An HTML attachment was scrubbed... URL: From peterj.13.07 at gmail.com Sun Sep 17 22:21:25 2017 From: peterj.13.07 at gmail.com (Peter Jardine) Date: Mon, 18 Sep 2017 12:21:25 +1000 Subject: [docs] Document download links give 404 - Not Found Message-ID: <9aad15d5-fa8b-49fe-3830-6ca6520484d9@gmail.com> Trying to download Python docs. All links tried for v2.7 or v3 downloads give 404 Not Found - nginx Tried: from: https://docs.python.org/2.7/download.html https://docs.python.org/2.7/archives/python-2.7.14-docs-pdf-a4.zip https://docs.python.org/2.7/archives/python-2.7.14-docs-pdf-a4.tar.bz2 https://docs.python.org/2.7/archives/python-2.7.14-docs-html.zip https://docs.python.org/2.7/archives/python-2.7.14-docs-html.tar.bz2 from: https://docs.python.org/3/download.html https://docs.python.org/3/archives/python-3.6.2-docs-pdf-a4.zip https://docs.python.org/3/archives/python-3.6.2-docs-pdf-a4.tar.bz2 https://docs.python.org/3/archives/python-3.6.2-docs-html.zip https://docs.python.org/3/archives/python-3.6.2-docs-html.tar.bz2 Links for v3.5 worked ok. Regards, Peter J From Pierre at icap-gtld.com.cn Fri Sep 8 23:06:54 2017 From: Pierre at icap-gtld.com.cn (Pierre Lee) Date: Sat, 09 Sep 2017 03:06:54 -0000 Subject: [docs] python Message-ID: Dear Sir/ Ms. We are a domain name registration service agency. Our center received an application from Nicole Tsang International today. They applied to register python as their Brand Name and applied for several top-level domains. However, the main body of these names is same as your company name. We're not sure about your relationship with this company. Now we are processing this application. Our center needs to confirm whether the application is authorized by your company. If so, we will proceed with their registration. If not, please inform us as soon as possible in order to take the next step. We await your prompt reply. Regards, Pierre Lee Tel: 0086-551-6349-1193 Fax: 0086-551-6349-1192 Building 2,Zhidi Square,No.288,Huaining Road,Hefei Anhui -------------- next part -------------- An HTML attachment was scrubbed... URL: From prajwalanagani at gmail.com Tue Sep 19 11:14:57 2017 From: prajwalanagani at gmail.com (Prajwal Anagani) Date: Tue, 19 Sep 2017 20:44:57 +0530 Subject: [docs] File not downloading Message-ID: Hey. I'm getting a 404 error on my browser each time I try to download the python documentation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pythonman083 at gmail.com Wed Sep 13 21:43:50 2017 From: pythonman083 at gmail.com (Dr. pythonman) Date: Thu, 14 Sep 2017 09:43:50 +0800 Subject: [docs] error 404 whit documents download Message-ID: hello, admin. I can't download documents zip file in 2017/9/14. relate url:https://docs.python.org/3/download.html -------------- next part -------------- An HTML attachment was scrubbed... URL: From quicklizard at googlemail.com Thu Sep 21 07:19:58 2017 From: quicklizard at googlemail.com (Lawrence Hudson) Date: Thu, 21 Sep 2017 12:19:58 +0100 Subject: [docs] Broken download links Message-ID: Hello! In case you were not aware, the download links on https://docs.python.org/2. 7/download.html are all returning a 404. Thanks, Lawrence -------------- next part -------------- An HTML attachment was scrubbed... URL: From rayjhendricks at gmail.com Tue Sep 19 16:01:45 2017 From: rayjhendricks at gmail.com (ray) Date: Tue, 19 Sep 2017 13:01:45 -0700 Subject: [docs] docs link is broken. Message-ID: https://docs.python.org/3/archives/python-3.6.3rc1-docs-html.zip gives a 404 error. -------------- next part -------------- An HTML attachment was scrubbed... URL: From robby2040 at gmail.com Sun Sep 17 21:00:48 2017 From: robby2040 at gmail.com (Robby) Date: Sun, 17 Sep 2017 20:00:48 -0500 Subject: [docs] Documentation downloads aren't working Message-ID: <2E1C5712-AE7D-4F67-A718-38EF73F65D63@gmail.com> Sorry to bother you. I just wanted to let you know that the documentation download links keep leading to 404 Not Found error. I would love to download the offline documentation if at all possible. Have a great day. Thanks. From roger at welby-everard.com Fri Sep 15 04:10:44 2017 From: roger at welby-everard.com (Roger Welby-Everard) Date: Fri, 15 Sep 2017 09:10:44 +0100 Subject: [docs] Cannot Download Message-ID: <000001d32dfa$2155ee70$6401cb50$@welby-everard.com> Every time I click on a download link in https://docs.python.org/3/download.html I get a 404 not found error Roger Welby-Everard roger at welby-everard.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From ryansmale84 at gmail.com Fri Sep 15 15:55:12 2017 From: ryansmale84 at gmail.com (Ryan) Date: Fri, 15 Sep 2017 15:55:12 -0400 Subject: [docs] Dead links Message-ID: <60d5c250-a2c7-a7bf-09dd-22e720d36233@gmail.com> ? Hello, ?I would like to download the official Python 2.7 documentation in PDF but all the links here are broken. ?If you could send me the PDF; it would be much appreciated. ?Thanx :) --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus -------------- next part -------------- An HTML attachment was scrubbed... URL: From satyasrockin at gmail.com Sat Sep 9 01:46:40 2017 From: satyasrockin at gmail.com (Satyabrata Choudhury) Date: Sat, 09 Sep 2017 05:46:40 -0000 Subject: [docs] (no subject) Message-ID: Dear sir/mam, I am unable to download python 3.6.2 documentation. it is showing 404 status error.so please guide me where should i get these documentation. -------------- next part -------------- An HTML attachment was scrubbed... URL: From shadowstormninja at gmail.com Sun Sep 17 00:12:39 2017 From: shadowstormninja at gmail.com (shadowstormninja at gmail.com) Date: Sun, 17 Sep 2017 00:12:39 -0400 Subject: [docs] downloading documents Message-ID: <59bdf639.4a38630a.bb98b.4414@mx.google.com> I can not download the Python 3.6.2 documentation. Thanks Sent from Mail for Windows 10 -------------- next part -------------- An HTML attachment was scrubbed... URL: From sreenathbandi.ds at gmail.com Sat Sep 16 05:32:08 2017 From: sreenathbandi.ds at gmail.com (bandi sreenath) Date: Sat, 16 Sep 2017 09:32:08 +0000 (UTC) Subject: [docs] 404 error... Unable to download Python 2.7 docs Message-ID: https://docs.python.org/2.7/download.html Thanks and regards, Sreenath -------------- next part -------------- An HTML attachment was scrubbed... URL: From silver0618 at live.com Sat Sep 16 20:13:27 2017 From: silver0618 at live.com (_Silvers 0xW) Date: Sun, 17 Sep 2017 00:13:27 +0000 Subject: [docs] those doc couldnt download Message-ID: [cid:_wpsmail at 44tb1p9sj0j3fu4577mt1084.1505607157162] ??????? -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Screenshot_2017-09-17-08-11-26-516_com.android.browser.png Type: image/png Size: 45326 bytes Desc: Screenshot_2017-09-17-08-11-26-516_com.android.browser.png URL: From shwetangmishra1 at gmail.com Tue Sep 19 14:30:39 2017 From: shwetangmishra1 at gmail.com (Shwetang Mishra) Date: Wed, 20 Sep 2017 00:00:39 +0530 Subject: [docs] Unable to download Python documentation Message-ID: Hi, I am unable to download the python documentation from the below link: https://docs.python.org/3/download.html Error message: 404 Not Found Kindly help. Regards, Shwetang -------------- next part -------------- An HTML attachment was scrubbed... URL: From steve at platinumtradeinc.com Wed Sep 13 15:15:23 2017 From: steve at platinumtradeinc.com (Steve Flippin) Date: Wed, 13 Sep 2017 19:15:23 +0000 Subject: [docs] broken links Message-ID: Good Morning, I noticed that all the links on the download docs page result in 404 error. Steve Flippin steve at platinumtradeinc.com 503 393 5554 503 393 0720 Fax -------------- next part -------------- An HTML attachment was scrubbed... URL: From support at kapeli.com Sun Sep 17 11:59:39 2017 From: support at kapeli.com (Kapeli) Date: Sun, 17 Sep 2017 18:59:39 +0300 Subject: [docs] Download links broken Message-ID: <6311C3B4-233B-4A45-A130-6D2BC673A639@kapeli.com> Hi, The download links at https://docs.python.org/2/download.html aren't working. Regards, Bogdan -------------- next part -------------- An HTML attachment was scrubbed... URL: From suvajitb1 at gmail.com Tue Sep 5 14:17:17 2017 From: suvajitb1 at gmail.com (Suvajit Basu Roy) Date: Tue, 05 Sep 2017 18:17:17 -0000 Subject: [docs] (no subject) Message-ID: Hello I just started to learn Python programming for my own knowledge. I was trying to download the documentation on Python 3.6.2 from the link: https://docs.python.org/3/download.html. But I'm getting 404 error. I'm using windows platform and Google chrome/ internet explorer to download the same. Can you please help me to get the documentation? -- *Best Regards,* *Suvajit Basu Roy* -------------- next part -------------- An HTML attachment was scrubbed... URL: From t.yankar17 at gmail.com Mon Sep 18 14:56:16 2017 From: t.yankar17 at gmail.com (kar t-yan) Date: Mon, 18 Sep 2017 11:56:16 -0700 Subject: [docs] (no subject) Message-ID: please send me Python documentation -------------- next part -------------- An HTML attachment was scrubbed... URL: From takashi92 at list.ru Fri Sep 15 16:20:55 2017 From: takashi92 at list.ru (=?UTF-8?B?QW5kcmV5IEpha292bGV2?=) Date: Fri, 15 Sep 2017 23:20:55 +0300 Subject: [docs] =?utf-8?q?Can=27t_download_epub_documentation?= Message-ID: <1505506855.752645076@f508.i.mail.ru> Hello! I can't download Python's 3.6.2 documentation in epub format (also in others). When i click on link opens window "404 Not Found". What can i do? -------------- next part -------------- An HTML attachment was scrubbed... URL: From teresavdberg at gmail.com Thu Sep 14 12:10:48 2017 From: teresavdberg at gmail.com (Teresa van den Berg) Date: Thu, 14 Sep 2017 18:10:48 +0200 Subject: [docs] 404 on docs downloads Message-ID: Hi. Getting 404 on docs download links for python 2.7 docs.. https://docs.python.org/2/download. Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: From trevor.wilcox at synapse.com Tue Sep 19 14:07:59 2017 From: trevor.wilcox at synapse.com (Trevor Wilcox) Date: Tue, 19 Sep 2017 11:07:59 -0700 Subject: [docs] 2.7 Documentation Links Broken Message-ID: Hello, I am trying to download all documentation for Python 2.7, but the links at the following site are all broken. Is there a new location in which I can find them? https://docs.python.org/2/download.html Thank you -- *Trevor Wilcox * Senior Software Engineer *Synapse Product Development* A Cambridge Consultants Company mail 1511 6th Ave Suite 400, Seattle, WA 98101 direct 206-832-1269 ext. 4457 <206-832-1269,4457> | office 206-381-0898 | mobile 360-920-2057 trevor.wilcox at synapse.com | http://www.synapse.com This email and any files transmitted with it are confidential. Unauthorized publication, use or dissemination of this email is prohibited. Please consider the environment before printing. -------------- next part -------------- An HTML attachment was scrubbed... URL: From vijaykiran.n92 at gmail.com Mon Sep 18 04:54:43 2017 From: vijaykiran.n92 at gmail.com (Vijay Nallacheruvu) Date: Mon, 18 Sep 2017 14:24:43 +0530 Subject: [docs] Download Issue. Message-ID: Hello, I'm not able to download the python 3.x documentation from the downloads section in python.org. Can you please provide me the docs ? It would be helpful. Thanks in advance. Regards, Vijay. -------------- next part -------------- An HTML attachment was scrubbed... URL: From Volker.Wippel at v2c2.at Thu Sep 21 02:46:37 2017 From: Volker.Wippel at v2c2.at (Wippel, Volker) Date: Thu, 21 Sep 2017 06:46:37 +0000 Subject: [docs] Download 2.7.14 Documentation Message-ID: <1950BC0241D283439C015ABD296AD8E601949D9E9E@EX2010MX02.v2c2.at> Hello The Python 2.7.14 Documentation seems to be not linked correctly at https://docs.python.org/2/download.html E.g. https://docs.python.org/2/archives/python-2.7.14-docs-pdf-a4.zip -> 404 Not Found nginx Best regards Volker Wippel From w3nlb at amsat.org Fri Sep 22 01:44:15 2017 From: w3nlb at amsat.org (lb) Date: Fri, 22 Sep 2017 01:44:15 -0400 Subject: [docs] doc download problems Message-ID: <59C4A32F.8010505@amsat.org> I just tried to download the doc archives for 3.6. from webpage https://docs.python.org/3/download.html Tried all four PDF types and both plain text types. Gog a 404 Page Not Found error on all of them. Please provide a link to the PDF docs. Thanks. - Leigh From xufang.wang at outlook.com Wed Sep 13 22:35:46 2017 From: xufang.wang at outlook.com (=?gb2312?B?zfUg0PG3vA==?=) Date: Thu, 14 Sep 2017 02:35:46 +0000 Subject: [docs] unable to download docs Message-ID: When I?m trying to download https://docs.python.org/2/archives/python-2.7.14rc1-docs-pdf-a4.zip , ?404 Not Found? shows up ??? Windows 10 ????? -------------- next part -------------- An HTML attachment was scrubbed... URL: From yangbin at cn.ibm.com Tue Sep 19 04:53:19 2017 From: yangbin at cn.ibm.com (Bin Yang) Date: Tue, 19 Sep 2017 16:53:19 +0800 Subject: [docs] Download links of Python docs were broken. Message-ID: Hi, The download links of Python Documentation were broken. Would you please help check them? Thanks Thanks & Regards Bin Yang -------------- next part -------------- An HTML attachment was scrubbed... URL: From yujiegcn at icloud.com Fri Sep 15 03:37:14 2017 From: yujiegcn at icloud.com (=?gb2312?B?uaLT6r3c?=) Date: Fri, 15 Sep 2017 10:37:14 +0300 Subject: [docs] Download error Message-ID: Dear sir /madam please send me a copy of python3.6.2 documentation in pdf(A4-paper),i couldn?t download it ,it shows 404 error. Thanks! From zahidhasanshs2014 at gmail.com Tue Sep 19 15:11:08 2017 From: zahidhasanshs2014 at gmail.com (Zahid Hasan) Date: Wed, 20 Sep 2017 01:11:08 +0600 Subject: [docs] Download Problem Message-ID: Dear Sir, I want to download Python 3.6.3 documentation but if i click on download link it shows 404 error. I will very much regards if you help me. Yours -------------- next part -------------- An HTML attachment was scrubbed... URL: From zhphysicsllwl at gmail.com Wed Sep 20 10:08:27 2017 From: zhphysicsllwl at gmail.com (=?UTF-8?B?5byg6ZKK?=) Date: Wed, 20 Sep 2017 22:08:27 +0800 Subject: [docs] Hi! There is something wrong with your links given to ''Download Python 3.6.3rc1 Documentation''. Message-ID: I can't open the link and saw that page just like the picture when I tried to get the Python 3.6.3rc1 Documentation. I'll appreciate it if you can help me with this. Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: FireShot Capture 43 - 404 Not Found_ - https___docs.python.org_3_archives.png Type: image/png Size: 111375 bytes Desc: not available URL: From report at bugs.python.org Sun Sep 24 10:29:32 2017 From: report at bugs.python.org (Larry Myerscough) Date: Sun, 24 Sep 2017 14:29:32 +0000 Subject: [docs] [issue31570] minor bug in documentataion relating to sending html email In-Reply-To: <1506263267.39.0.0557615957099.issue31570@psf.upfronthosting.co.za> Message-ID: <1506263372.96.0.583364778814.issue31570@psf.upfronthosting.co.za> Changes by Larry Myerscough : ---------- assignee: -> docs at python components: +Documentation, email nosy: +barry, docs at python, r.david.murray _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 10:56:17 2017 From: report at bugs.python.org (Guilherme Praciano Karst Caminha) Date: Sun, 24 Sep 2017 14:56:17 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst Message-ID: <1506264977.89.0.621089046614.issue31571@psf.upfronthosting.co.za> New submission from Guilherme Praciano Karst Caminha: The file Doc/reference/lexical_analysis.rst has at least two redundant parts. The first one is quoted below: "As of Python 3.3 it is possible again to prefix string literals with a u prefix to simplify maintenance of dual 2.x and 3.x codebases." This is repeated a couple paragraphs after: "New in version 3.3: Support for the unicode legacy literal (u'value') was reintroduced to simplify the maintenance of dual Python 2.x and 3.x codebases. See PEP 414 for more information." Also, this other one: "Note that numeric literals do not include a sign; a phrase like -1 is actually an expression composed of the unary operator - and the literal 1." Is literally repeated twice, only that on the first time it has quotes around the - operator: "Note that numeric literals do not include a sign; a phrase like -1 is actually an expression composed of the unary operator ?-? and the literal 1." ---------- assignee: docs at python components: Documentation messages: 302859 nosy: Guilherme, docs at python priority: normal pull_requests: 3705 severity: normal status: open title: Redundand information on Doc/reference/lexical_analysis.rst versions: Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 11:04:19 2017 From: report at bugs.python.org (Henk-Jaap Wagenaar) Date: Sun, 24 Sep 2017 15:04:19 +0000 Subject: [docs] [issue31570] minor bug in documentataion relating to sending html email In-Reply-To: <1506263267.39.0.0557615957099.issue31570@psf.upfronthosting.co.za> Message-ID: <1506265459.36.0.860043446863.issue31570@psf.upfronthosting.co.za> Changes by Henk-Jaap Wagenaar : ---------- keywords: +patch pull_requests: +3706 stage: -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 11:16:18 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Sun, 24 Sep 2017 15:16:18 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst In-Reply-To: <1506264977.89.0.621089046614.issue31571@psf.upfronthosting.co.za> Message-ID: <1506266178.36.0.7314268818.issue31571@psf.upfronthosting.co.za> Serhiy Storchaka added the comment: The first pair was added in 50364b4a5c8f02ec05d33928e29a8780d9acf968 by Armin Ronacher. The duplicate of the other phrase was introduced in 60f2f0cf8e10c94693dfea8937b7feabeffe5744. ---------- nosy: +aronacher, gvanrossum, serhiy.storchaka _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 11:19:28 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sun, 24 Sep 2017 15:19:28 +0000 Subject: [docs] [issue31423] Error while building PDF documentation In-Reply-To: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> Message-ID: <1506266368.17.0.644512456682.issue31423@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Seems like people are seeing 404s when downloading docs today. By any chance this issue is related? ---------- nosy: +Mariatta _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 11:36:08 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sun, 24 Sep 2017 15:36:08 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst In-Reply-To: <1506264977.89.0.621089046614.issue31571@psf.upfronthosting.co.za> Message-ID: <1506267368.03.0.397997613256.issue31571@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: I think we can remove ``` As of Python 3.3 it is possible again to prefix ..." ``` and keep the other one where it says: ``` .. versionadded:: 3.3 Support for the unicode legacy literal .... ``` About the sentence about numeric literals that appears twice: it appears on different sections of the language reference documentation. It's very likely for a person to only read one section and not the other. I think it's ok to have them in different places like that. ---------- nosy: +Mariatta _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 11:39:23 2017 From: report at bugs.python.org (Guilherme Praciano Karst Caminha) Date: Sun, 24 Sep 2017 15:39:23 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst In-Reply-To: <1506264977.89.0.621089046614.issue31571@psf.upfronthosting.co.za> Message-ID: <1506267563.79.0.280525186188.issue31571@psf.upfronthosting.co.za> Guilherme Praciano Karst Caminha added the comment: I believe that the sentence regarding the - operator also applies to Integer literals and Imaginary literals. But it only appears on the Floating point literals and Numeric literals sections. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 11:41:49 2017 From: report at bugs.python.org (Guilherme Praciano Karst Caminha) Date: Sun, 24 Sep 2017 15:41:49 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst In-Reply-To: <1506264977.89.0.621089046614.issue31571@psf.upfronthosting.co.za> Message-ID: <1506267709.31.0.945234115302.issue31571@psf.upfronthosting.co.za> Guilherme Praciano Karst Caminha added the comment: Also, "Numeric literals" is a more general section, so rules that apply for the three types of numeric literals should probably go there to avoid repetition. Maybe the Integer, Floating point and Imaginary literal sections should be one section level deeper, so that they are under the Numeric Literal section. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 11:51:49 2017 From: report at bugs.python.org (Henk-Jaap Wagenaar) Date: Sun, 24 Sep 2017 15:51:49 +0000 Subject: [docs] [issue31570] minor bug in documentataion relating to sending html email In-Reply-To: <1506263267.39.0.0557615957099.issue31570@psf.upfronthosting.co.za> Message-ID: <1506268309.88.0.506168908693.issue31570@psf.upfronthosting.co.za> Henk-Jaap Wagenaar added the comment: I have made a PR, not sure whether it needs backporting? ---------- nosy: +Henk-Jaap Wagenaar _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 12:14:50 2017 From: report at bugs.python.org (Roundup Robot) Date: Sun, 24 Sep 2017 16:14:50 +0000 Subject: [docs] [issue31570] minor bug in documentataion relating to sending html email In-Reply-To: <1506263267.39.0.0557615957099.issue31570@psf.upfronthosting.co.za> Message-ID: <1506269690.07.0.466007178698.issue31570@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3707 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 12:18:52 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sun, 24 Sep 2017 16:18:52 +0000 Subject: [docs] [issue31570] minor bug in documentataion relating to sending html email In-Reply-To: <1506263267.39.0.0557615957099.issue31570@psf.upfronthosting.co.za> Message-ID: <1506269932.17.0.556666831191.issue31570@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset ce418bf8228c9a6a19702638e5f5c2fb66ad0588 by Mariatta (Miss Islington (bot)) in branch '3.6': bpo-31570: Update Email library documentation example (GH-3720) (GH-3721) https://github.com/python/cpython/commit/ce418bf8228c9a6a19702638e5f5c2fb66ad0588 ---------- nosy: +Mariatta _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 12:19:37 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Sun, 24 Sep 2017 16:19:37 +0000 Subject: [docs] [issue31570] minor bug in documentataion relating to sending html email In-Reply-To: <1506263267.39.0.0557615957099.issue31570@psf.upfronthosting.co.za> Message-ID: <1506269977.22.0.392352988579.issue31570@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: This is fixed now. Thanks Larry and Henk-Jaap! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 13:12:04 2017 From: report at bugs.python.org (Ned Deily) Date: Sun, 24 Sep 2017 17:12:04 +0000 Subject: [docs] [issue31423] Error while building PDF documentation In-Reply-To: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> Message-ID: <1506273124.54.0.0311894124013.issue31423@psf.upfronthosting.co.za> Ned Deily added the comment: > Seems like people are seeing 404s when downloading docs today. Do you have specific URLs or web pages? Or a link to where this was discussed? I just did a quick look at some of the download pages and everything worked for me. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 13:39:46 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Sun, 24 Sep 2017 17:39:46 +0000 Subject: [docs] [issue30085] Discourage operator.__dunder__ functions In-Reply-To: <1492396029.61.0.720198059802.issue30085@psf.upfronthosting.co.za> Message-ID: <1506274786.08.0.152943685664.issue30085@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- assignee: -> terry.reedy _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 14:00:27 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Sun, 24 Sep 2017 18:00:27 +0000 Subject: [docs] [issue30826] More details in reference 'Looping through a list in Python and modifying it' In-Reply-To: <1498969328.51.0.74139016573.issue30826@psf.upfronthosting.co.za> Message-ID: <1506276027.87.0.411782599397.issue30826@psf.upfronthosting.co.za> Raymond Hettinger added the comment: After looking at this again, I think the entire example should be removed. We really don't want to encourage people to code like this (it would never make it through a code review). The example itself is silly (not fully, just weird and lacking real-world motiviation). The s.insert(0,x) code is an anti-pattern. And in general, mutating a data structure while iterating over it is a perilous practice leading to fragile code (many data structures ban the practice outright: databases, deques, dicts). Mutating while iterating is only safe if a data structure makes explicit guarantees about how it iterates. In Python, we have only a handful of such guarantees (you can safely mutate dict values while iterating over the keys and lists guarantee that the iterator looks-up consecutive indicies regardless of changes to the underlying list). I propose to remove the last two paragraphs and the example, replacing them with clear practical advice and patterns that would pass a code review. Something like this: Code that modifies a collection while iterating over that same collection can be tricky to get right. Instead, it is usually more straight-forward to loop over a copy of the collection or to create a new collection. # Strategy: Iterate over a copy for user, status in users.copy(): if status == 'inactive': del users[user] # Strategy: Create a new collection active_users = {} for user, status in users.items(): if status == 'active': active_users[user] = status ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 14:29:23 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Sun, 24 Sep 2017 18:29:23 +0000 Subject: [docs] [issue30085] Discourage operator.__dunder__ functions In-Reply-To: <1492396029.61.0.720198059802.issue30085@psf.upfronthosting.co.za> Message-ID: <1506277763.89.0.357634793847.issue30085@psf.upfronthosting.co.za> Terry J. Reedy added the comment: New changeset 5b9299d8c72aeadccadd77e4b8132094ba9a1f96 by Terry Jan Reedy (Sanket Dasgupta) in branch 'master': bpo-30085: Improve documentation for operator (#1171) https://github.com/python/cpython/commit/5b9299d8c72aeadccadd77e4b8132094ba9a1f96 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 14:30:04 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Sun, 24 Sep 2017 18:30:04 +0000 Subject: [docs] [issue30085] Discourage operator.__dunder__ functions In-Reply-To: <1492396029.61.0.720198059802.issue30085@psf.upfronthosting.co.za> Message-ID: <1506277804.78.0.624178858575.issue30085@psf.upfronthosting.co.za> Changes by Terry J. Reedy : ---------- resolution: -> fixed stage: commit review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 15:09:49 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Sun, 24 Sep 2017 19:09:49 +0000 Subject: [docs] [issue18558] Iterable glossary entry needs clarification In-Reply-To: <1374796651.89.0.668716719647.issue18558@psf.upfronthosting.co.za> Message-ID: <1506280189.24.0.680688731125.issue18558@psf.upfronthosting.co.za> Raymond Hettinger added the comment: I'll follow David Murray's suggestion here. The glossary definition of iterable is already very good, it just needs to clarify that the __getitem__() method needs to implement sequence semantics. Anything further is beyond the scope of a glossary entry. Also, I'll amend the docs on collections.abc.Iterable() to be more specific about what it is does and doesn't recognize. FWIW, the topic is also discussed in other places: * https://docs.python.org/3/library/functions.html#iter * https://docs.python.org/3/reference/datamodel.html#object.__getitem__ * https://docs.python.org/3/reference/datamodel.html#object.__iter__ ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 15:15:40 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Sun, 24 Sep 2017 19:15:40 +0000 Subject: [docs] [issue18558] Iterable glossary entry needs clarification In-Reply-To: <1374796651.89.0.668716719647.issue18558@psf.upfronthosting.co.za> Message-ID: <1506280540.04.0.702783048204.issue18558@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- keywords: +patch pull_requests: +3718 stage: needs patch -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 15:59:24 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Sun, 24 Sep 2017 19:59:24 +0000 Subject: [docs] [issue30826] More details in reference 'Looping through a list in Python and modifying it' In-Reply-To: <1498969328.51.0.74139016573.issue30826@psf.upfronthosting.co.za> Message-ID: <1506283164.59.0.0458338339556.issue30826@psf.upfronthosting.co.za> Terry J. Reedy added the comment: I agree that the tutorial For section needs be updated to include non-sequences. A dict example will help with that. I agree that the unrealistic insert mis-directs attention and like Raymond's replacement. ['users.copy()' should be 'users.copy().items'] ---------- versions: +Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 17:08:58 2017 From: report at bugs.python.org (Roundup Robot) Date: Sun, 24 Sep 2017 21:08:58 +0000 Subject: [docs] [issue30085] Discourage operator.__dunder__ functions In-Reply-To: <1492396029.61.0.720198059802.issue30085@psf.upfronthosting.co.za> Message-ID: <1506287338.8.0.0905408811813.issue30085@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3722 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 17:13:17 2017 From: report at bugs.python.org (Terry J. Reedy) Date: Sun, 24 Sep 2017 21:13:17 +0000 Subject: [docs] [issue30085] Discourage operator.__dunder__ functions In-Reply-To: <1492396029.61.0.720198059802.issue30085@psf.upfronthosting.co.za> Message-ID: <1506287597.88.0.0768594041998.issue30085@psf.upfronthosting.co.za> Terry J. Reedy added the comment: New changeset d38caf68bb417232fb0ccecb5558d7d0ca4a9507 by Terry Jan Reedy (Miss Islington (bot)) in branch '3.6': [3.6] bpo-30085: Improve documentation for operator (GH-1171) (#3736) https://github.com/python/cpython/commit/d38caf68bb417232fb0ccecb5558d7d0ca4a9507 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 18:18:35 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Sun, 24 Sep 2017 22:18:35 +0000 Subject: [docs] [issue27385] itertools.groupby has misleading doc string In-Reply-To: <1466801880.76.0.293579802764.issue27385@psf.upfronthosting.co.za> Message-ID: <1506291515.34.0.437958061605.issue27385@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- pull_requests: +3724 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 18:32:15 2017 From: report at bugs.python.org (Guido van Rossum) Date: Sun, 24 Sep 2017 22:32:15 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst In-Reply-To: <1506264977.89.0.621089046614.issue31571@psf.upfronthosting.co.za> Message-ID: <1506292335.92.0.713416765774.issue31571@psf.upfronthosting.co.za> Guido van Rossum added the comment: Is there anything here that requires my attention? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 19:03:04 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Sun, 24 Sep 2017 23:03:04 +0000 Subject: [docs] [issue31153] Update docstrings of itertools functions In-Reply-To: <1502264559.87.0.404253644107.issue31153@psf.upfronthosting.co.za> Message-ID: <1506294184.55.6.9760857101e-06.issue31153@psf.upfronthosting.co.za> Raymond Hettinger added the comment: Marking this as closed. 1) is being fixed elsewhere, 2) don't want to make func=None an official part of the API (it was a convenience for letting func default to the equivalent of operator.add), 3) already fixed, and 4) already fixed. ---------- resolution: -> fixed stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sun Sep 24 19:53:35 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Sun, 24 Sep 2017 23:53:35 +0000 Subject: [docs] [issue23702] docs.python.org/3/howto/descriptor.html still refers to "unbound methods" In-Reply-To: <1426708114.47.0.635748134131.issue23702@psf.upfronthosting.co.za> Message-ID: <1506297215.75.0.934462238173.issue23702@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- keywords: +patch pull_requests: +3725 stage: needs patch -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 01:33:32 2017 From: report at bugs.python.org (Serhiy Storchaka) Date: Mon, 25 Sep 2017 05:33:32 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst In-Reply-To: <1506264977.89.0.621089046614.issue31571@psf.upfronthosting.co.za> Message-ID: <1506317611.98.0.183565938716.issue31571@psf.upfronthosting.co.za> Serhiy Storchaka added the comment: Guido, in 60f2f0cf8e10c94693dfea8937b7feabeffe5744 you added the phrase "Note that numeric literals do not include a sign; ..." in the "Numeric literals" section. Did you mean moving it from the "Floating point literals" section or creating a duplicate? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 03:52:12 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 25 Sep 2017 07:52:12 +0000 Subject: [docs] [issue18558] Iterable glossary entry needs clarification In-Reply-To: <1374796651.89.0.668716719647.issue18558@psf.upfronthosting.co.za> Message-ID: <1506325932.08.0.0815952227302.issue18558@psf.upfronthosting.co.za> Raymond Hettinger added the comment: New changeset 0bf287b6e0a42877b06cbea5d0fe6474d8061caa by Raymond Hettinger in branch 'master': bpo-18558: Clarify glossary entry for "Iterable" (#3732) https://github.com/python/cpython/commit/0bf287b6e0a42877b06cbea5d0fe6474d8061caa ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 03:52:22 2017 From: report at bugs.python.org (Roundup Robot) Date: Mon, 25 Sep 2017 07:52:22 +0000 Subject: [docs] [issue18558] Iterable glossary entry needs clarification In-Reply-To: <1374796651.89.0.668716719647.issue18558@psf.upfronthosting.co.za> Message-ID: <1506325942.07.0.351488946595.issue18558@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3728 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 03:57:26 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 25 Sep 2017 07:57:26 +0000 Subject: [docs] [issue18558] Iterable glossary entry needs clarification In-Reply-To: <1374796651.89.0.668716719647.issue18558@psf.upfronthosting.co.za> Message-ID: <1506326246.01.0.166561409761.issue18558@psf.upfronthosting.co.za> Raymond Hettinger added the comment: New changeset 01438ed4c22ca150da1cc5c38d83a59b0b6a62a7 by Raymond Hettinger (Miss Islington (bot)) in branch '3.6': [3.6] bpo-18558: Clarify glossary entry for "Iterable" (GH-3732) (#3741) https://github.com/python/cpython/commit/01438ed4c22ca150da1cc5c38d83a59b0b6a62a7 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 04:00:38 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 25 Sep 2017 08:00:38 +0000 Subject: [docs] [issue18558] Iterable glossary entry needs clarification In-Reply-To: <1374796651.89.0.668716719647.issue18558@psf.upfronthosting.co.za> Message-ID: <1506326438.01.0.382802759246.issue18558@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 04:05:52 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 25 Sep 2017 08:05:52 +0000 Subject: [docs] [issue23702] docs.python.org/3/howto/descriptor.html still refers to "unbound methods" In-Reply-To: <1426708114.47.0.635748134131.issue23702@psf.upfronthosting.co.za> Message-ID: <1506326752.33.0.33118865397.issue23702@psf.upfronthosting.co.za> Raymond Hettinger added the comment: New changeset 0d4497b9cae7942b7f731a6f99a73985c3fb4630 by Raymond Hettinger in branch 'master': bpo-23702: Update Descriptor-HOWTO to reflect the removal of unbound methods (#3739) https://github.com/python/cpython/commit/0d4497b9cae7942b7f731a6f99a73985c3fb4630 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 04:06:03 2017 From: report at bugs.python.org (Roundup Robot) Date: Mon, 25 Sep 2017 08:06:03 +0000 Subject: [docs] [issue23702] docs.python.org/3/howto/descriptor.html still refers to "unbound methods" In-Reply-To: <1426708114.47.0.635748134131.issue23702@psf.upfronthosting.co.za> Message-ID: <1506326763.86.0.176770244398.issue23702@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3729 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 04:11:23 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 25 Sep 2017 08:11:23 +0000 Subject: [docs] [issue23702] docs.python.org/3/howto/descriptor.html still refers to "unbound methods" In-Reply-To: <1426708114.47.0.635748134131.issue23702@psf.upfronthosting.co.za> Message-ID: <1506327083.93.0.367206601254.issue23702@psf.upfronthosting.co.za> Raymond Hettinger added the comment: New changeset 73c915a5cd1cdd8775cf47b77fef7ca8fd42ad96 by Raymond Hettinger (Miss Islington (bot)) in branch '3.6': [3.6] bpo-23702: Update Descriptor-HOWTO to reflect the removal of unbound methods (GH-3739) (#3742) https://github.com/python/cpython/commit/73c915a5cd1cdd8775cf47b77fef7ca8fd42ad96 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 04:15:17 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 25 Sep 2017 08:15:17 +0000 Subject: [docs] [issue23702] docs.python.org/3/howto/descriptor.html still refers to "unbound methods" In-Reply-To: <1426708114.47.0.635748134131.issue23702@psf.upfronthosting.co.za> Message-ID: <1506327317.8.0.832331760887.issue23702@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- dependencies: -Wrong function calls and referring to not removed concepts in descriptor HowTo (documentation) _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 04:16:07 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 25 Sep 2017 08:16:07 +0000 Subject: [docs] [issue23702] docs.python.org/3/howto/descriptor.html still refers to "unbound methods" In-Reply-To: <1426708114.47.0.635748134131.issue23702@psf.upfronthosting.co.za> Message-ID: <1506327367.66.0.263127822123.issue23702@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 04:18:42 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 25 Sep 2017 08:18:42 +0000 Subject: [docs] [issue25435] Wrong function calls and referring to not removed concepts in descriptor HowTo (documentation) In-Reply-To: <1445194189.09.0.0973348556564.issue25435@psf.upfronthosting.co.za> Message-ID: <1506327522.41.0.0999811753219.issue25435@psf.upfronthosting.co.za> Raymond Hettinger added the comment: I've just updated the section on unbound methods. I'll be working on a number of other improvements over the next few weeks and will incorporate the suggested changes where appropriate. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 04:21:08 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 25 Sep 2017 08:21:08 +0000 Subject: [docs] [issue27385] itertools.groupby has misleading doc string In-Reply-To: <1466801880.76.0.293579802764.issue27385@psf.upfronthosting.co.za> Message-ID: <1506327668.82.0.622344156665.issue27385@psf.upfronthosting.co.za> Raymond Hettinger added the comment: New changeset 49392c63a243052c8013bef80d35202bb6d7c404 by Raymond Hettinger in branch 'master': bpo-27385: Clarify docstring for groupby() (#3738) https://github.com/python/cpython/commit/49392c63a243052c8013bef80d35202bb6d7c404 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 04:21:17 2017 From: report at bugs.python.org (Roundup Robot) Date: Mon, 25 Sep 2017 08:21:17 +0000 Subject: [docs] [issue27385] itertools.groupby has misleading doc string In-Reply-To: <1466801880.76.0.293579802764.issue27385@psf.upfronthosting.co.za> Message-ID: <1506327677.39.0.977233220655.issue27385@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- pull_requests: +3731 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 04:41:52 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 25 Sep 2017 08:41:52 +0000 Subject: [docs] [issue27385] itertools.groupby has misleading doc string In-Reply-To: <1466801880.76.0.293579802764.issue27385@psf.upfronthosting.co.za> Message-ID: <1506328912.19.0.334390607576.issue27385@psf.upfronthosting.co.za> Raymond Hettinger added the comment: New changeset e2a30cd35b95dad55aea10347655f246348d1951 by Raymond Hettinger (Miss Islington (bot)) in branch '3.6': [3.6] bpo-27385: Clarify docstring for groupby() (GH-3738) (#3744) https://github.com/python/cpython/commit/e2a30cd35b95dad55aea10347655f246348d1951 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 04:43:03 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Mon, 25 Sep 2017 08:43:03 +0000 Subject: [docs] [issue27385] itertools.groupby has misleading doc string In-Reply-To: <1466801880.76.0.293579802764.issue27385@psf.upfronthosting.co.za> Message-ID: <1506328983.11.0.857849428359.issue27385@psf.upfronthosting.co.za> Changes by Raymond Hettinger : ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.7 -Python 2.7, Python 3.5 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 08:11:36 2017 From: report at bugs.python.org (Anran Yang) Date: Mon, 25 Sep 2017 12:11:36 +0000 Subject: [docs] [issue31575] Functional Programming HOWTO sub-optimal example for reduce Message-ID: <1506341496.0.0.82723851335.issue31575@psf.upfronthosting.co.za> New submission from Anran Yang: At the end of the Functional Programming HOWTO document (https://docs.python.org/3.7/howto/functional.html) the usage of reduce/lambda/for loops are compared and discussed. However, the example for reduce seems sub-optimal and thus the discussion is not that efficient. The example: total = functools.reduce(lambda a, b: (0, a[1] + b[1]), items)[1] could be changed to: total = functools.reduce(lambda total, item: total + item[1], items, 0) which is much more readable and is actually not much inferior to the loop one (though the sum approach is still more concise). ---------- assignee: docs at python components: Documentation messages: 302950 nosy: Anran Yang, docs at python priority: normal severity: normal status: open title: Functional Programming HOWTO sub-optimal example for reduce versions: Python 3.5, Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 12:18:27 2017 From: report at bugs.python.org (Steve Dower) Date: Mon, 25 Sep 2017 16:18:27 +0000 Subject: [docs] [issue31569] inconsistent case of PCbuild/ directory In-Reply-To: <1506253484.65.0.417946556883.issue31569@psf.upfronthosting.co.za> Message-ID: <1506356307.74.0.345575993967.issue31569@psf.upfronthosting.co.za> Steve Dower added the comment: I'm okay with the PR as it stands, especially the parts that affect GitHub and appveyor, as those are almost certainly using case sensitive comparisons. It's definitely not easier to update the case of a file that is in git, and doing so will very likely break users (we had to do a case-folding pass over the Mercurial repository because while it could handle case changes, git could not import the ones we had in history). Personally I'd prefer it to have always been PCBuild rather than PCbuild, and it's very likely that I've introduced most of the 'incorrect' ones. But what's done is done and we should avoid the potential distraction of mismatched case throughout the rest of our codebase. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 12:23:20 2017 From: report at bugs.python.org (Zachary Ware) Date: Mon, 25 Sep 2017 16:23:20 +0000 Subject: [docs] [issue31569] inconsistent case of PCbuild/ directory In-Reply-To: <1506253484.65.0.417946556883.issue31569@psf.upfronthosting.co.za> Message-ID: <1506356600.28.0.828222470964.issue31569@psf.upfronthosting.co.za> Zachary Ware added the comment: Personally, *I'd* prefer PC -> Windows and PCbuild -> Windows\build :) I'm also good with the PR as is. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 12:47:41 2017 From: report at bugs.python.org (Paul Moore) Date: Mon, 25 Sep 2017 16:47:41 +0000 Subject: [docs] [issue31569] inconsistent case of PCbuild/ directory In-Reply-To: <1506253484.65.0.417946556883.issue31569@psf.upfronthosting.co.za> Message-ID: <1506358060.98.0.188339367503.issue31569@psf.upfronthosting.co.za> Paul Moore added the comment: OK, having re-read the PR, I'm fine with applying it as is, too. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 12:58:13 2017 From: report at bugs.python.org (Paul Moore) Date: Mon, 25 Sep 2017 16:58:13 +0000 Subject: [docs] [issue31569] inconsistent case of PCbuild/ directory In-Reply-To: <1506253484.65.0.417946556883.issue31569@psf.upfronthosting.co.za> Message-ID: <1506358693.75.0.667421852151.issue31569@psf.upfronthosting.co.za> Paul Moore added the comment: New changeset f1502d097c29b266a5748312ee2451a2d6ac0af6 by Paul Moore (Stefan Gr?nke) in branch 'master': bpo-31569: correct PCBuild/ case to PCbuild/ in build scripts and docs (GH-3711) https://github.com/python/cpython/commit/f1502d097c29b266a5748312ee2451a2d6ac0af6 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 13:27:31 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Mon, 25 Sep 2017 17:27:31 +0000 Subject: [docs] [issue31423] Error while building PDF documentation In-Reply-To: <1505159688.48.0.695846604768.issue31423@psf.upfronthosting.co.za> Message-ID: <1506360451.95.0.458473083494.issue31423@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Sorry!! Yesterday morning I received 50+ emails all about document download page is 404. Reading those again, turns out these are older emails from a week before, somehow just showing up in my mailbox. I think everything is good here. :) Thanks! ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 14:36:04 2017 From: report at bugs.python.org (Steve Dower) Date: Mon, 25 Sep 2017 18:36:04 +0000 Subject: [docs] [issue31569] inconsistent case of PCbuild/ directory In-Reply-To: <1506253484.65.0.417946556883.issue31569@psf.upfronthosting.co.za> Message-ID: <1506364564.34.0.252947102199.issue31569@psf.upfronthosting.co.za> Changes by Steve Dower : ---------- resolution: -> fixed stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 15:04:17 2017 From: report at bugs.python.org (Guido van Rossum) Date: Mon, 25 Sep 2017 19:04:17 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst In-Reply-To: Message-ID: Guido van Rossum added the comment: That's *really* old. Please clean up as you see fit! On Sep 24, 2017 10:33 PM, "Serhiy Storchaka" wrote: Serhiy Storchaka added the comment: Guido, in 60f2f0cf8e10c94693dfea8937b7feabeffe5744 you added the phrase "Note that numeric literals do not include a sign; ..." in the "Numeric literals" section. Did you mean moving it from the "Floating point literals" section or creating a duplicate? ---------- _______________________________________ Python tracker _______________________________________ ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 15:43:35 2017 From: report at bugs.python.org (Guilherme Praciano Karst Caminha) Date: Mon, 25 Sep 2017 19:43:35 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst In-Reply-To: <1506264977.89.0.621089046614.issue31571@psf.upfronthosting.co.za> Message-ID: <1506368615.24.0.677156550466.issue31571@psf.upfronthosting.co.za> Guilherme Praciano Karst Caminha added the comment: In that case, I believe the PR I've opened should be fine? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 16:01:11 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Mon, 25 Sep 2017 20:01:11 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst In-Reply-To: <1506264977.89.0.621089046614.issue31571@psf.upfronthosting.co.za> Message-ID: <1506369671.71.0.268336778523.issue31571@psf.upfronthosting.co.za> Changes by Mariatta Wijaya : ---------- stage: -> patch review versions: +Python 3.6 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 19:16:56 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Mon, 25 Sep 2017 23:16:56 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst In-Reply-To: <1506264977.89.0.621089046614.issue31571@psf.upfronthosting.co.za> Message-ID: <1506381416.67.0.815906339487.issue31571@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 4a2d00cb4525fcb3209f04531472ba6a359ed418 by Mariatta (Guilherme Caminha) in branch 'master': bpo-31571: Remove duplicated info in Lexical Analysis documentation (GH-3691) https://github.com/python/cpython/commit/4a2d00cb4525fcb3209f04531472ba6a359ed418 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 19:17:08 2017 From: report at bugs.python.org (Roundup Robot) Date: Mon, 25 Sep 2017 23:17:08 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst In-Reply-To: <1506264977.89.0.621089046614.issue31571@psf.upfronthosting.co.za> Message-ID: <1506381428.46.0.113672060895.issue31571@psf.upfronthosting.co.za> Changes by Roundup Robot : ---------- keywords: +patch pull_requests: +3741 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 19:23:35 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Mon, 25 Sep 2017 23:23:35 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst In-Reply-To: <1506264977.89.0.621089046614.issue31571@psf.upfronthosting.co.za> Message-ID: <1506381815.15.0.0519833601133.issue31571@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 26b940f762f0b306ff894601003f51a8d036e285 by Mariatta (Miss Islington (bot)) in branch '3.6': bpo-31571: Remove duplicated info in Lexical Analysis documentation (GH-3691) (GH-3754) https://github.com/python/cpython/commit/26b940f762f0b306ff894601003f51a8d036e285 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Mon Sep 25 19:25:56 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Mon, 25 Sep 2017 23:25:56 +0000 Subject: [docs] [issue31571] Redundand information on Doc/reference/lexical_analysis.rst In-Reply-To: <1506264977.89.0.621089046614.issue31571@psf.upfronthosting.co.za> Message-ID: <1506381956.22.0.947745232016.issue31571@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: The proposed change seems fine. Merged and backported. Thanks everyone! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 26 00:47:20 2017 From: report at bugs.python.org (Traveler Hauptman) Date: Tue, 26 Sep 2017 04:47:20 +0000 Subject: [docs] [issue31582] Add _pth breadcrumb to sys.path documentation Message-ID: <1506401240.1.0.91731713201.issue31582@psf.upfronthosting.co.za> New submission from Traveler Hauptman: Python on windows (winpython) was not adding PYTHONPATH to sys.path as documented and I could not understand why. It took a lot of time, web searches, and finally a tour through the code to find out about _pth; which is well documented but difficult to find out about if you don't know about it beforehand. Please improve the sys.path documentation to say that it depends on either PYTHONPATH or the *._pth file. Better yet, link to the actual sys.path heuristics. ---------- assignee: docs at python components: Documentation messages: 303000 nosy: Traveler Hauptman, docs at python priority: normal severity: normal status: open title: Add _pth breadcrumb to sys.path documentation type: enhancement _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 26 01:14:07 2017 From: report at bugs.python.org (asl) Date: Tue, 26 Sep 2017 05:14:07 +0000 Subject: [docs] [issue31584] Documentation Language mixed up Message-ID: <1506402847.94.0.987670636111.issue31584@psf.upfronthosting.co.za> New submission from asl: Some of the documentation language are mixed up. eg: Japanese on the English page https://docs.python.org/2.7/faq/design.html French on the Japanese https://docs.python.org/ja/2.7/faq/design.html It seem to affect multiple pages: https://docs.python.org/2.7/bugs.html https://docs.python.org/2.7/distributing/index.html https://docs.python.org/2.7/extending/index.html https://docs.python.org/2.7/extending/extending.html The c-api pages https://docs.python.org/2.7/c-api/index.html The faq pages https://docs.python.org/2.7/faq/index.html And possibly others. ---------- assignee: docs at python components: Documentation messages: 303004 nosy: asl, docs at python priority: normal severity: normal status: open title: Documentation Language mixed up versions: Python 2.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 26 01:48:01 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Tue, 26 Sep 2017 05:48:01 +0000 Subject: [docs] [issue31584] Documentation Language mixed up In-Reply-To: <1506402847.94.0.987670636111.issue31584@psf.upfronthosting.co.za> Message-ID: <1506404881.25.0.647801530587.issue31584@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Indeed a problem! Seems to affect Python 2.7 docs. If not mistaken, Julien worked on the language switcher. Maybe he has some clue ... ---------- nosy: +Mariatta, mdk priority: normal -> high stage: -> needs patch _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 26 02:41:01 2017 From: report at bugs.python.org (Raymond Hettinger) Date: Tue, 26 Sep 2017 06:41:01 +0000 Subject: [docs] [issue31575] Functional Programming HOWTO sub-optimal example for reduce In-Reply-To: <1506341496.0.0.82723851335.issue31575@psf.upfronthosting.co.za> Message-ID: <1506408061.32.0.803133839531.issue31575@psf.upfronthosting.co.za> Raymond Hettinger added the comment: I think the existing code conveys the author's message better than the proposed revision. The example isn't about efficiency; rather, it is about comparing several alternative formulations with this one being the weakest of the lost. For emphasizing that point and not getting lost in a made-up example, the a[1] and b[1] style is more effective. That's for the suggestion but I don't think it is a win. ---------- nosy: +rhettinger resolution: -> rejected stage: -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 26 03:49:21 2017 From: report at bugs.python.org (Julien Palard) Date: Tue, 26 Sep 2017 07:49:21 +0000 Subject: [docs] [issue31584] Documentation Language mixed up In-Reply-To: <1506402847.94.0.987670636111.issue31584@psf.upfronthosting.co.za> Message-ID: <1506412161.02.0.704694715435.issue31584@psf.upfronthosting.co.za> Julien Palard added the comment: Hi asl, thanks for reporting I'm looking at it. Thanks Mariatta for the notification. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 26 03:56:07 2017 From: report at bugs.python.org (Julien Palard) Date: Tue, 26 Sep 2017 07:56:07 +0000 Subject: [docs] [issue31584] Documentation Language mixed up In-Reply-To: <1506402847.94.0.987670636111.issue31584@psf.upfronthosting.co.za> Message-ID: <1506412567.37.0.0508751605259.issue31584@psf.upfronthosting.co.za> Julien Palard added the comment: I'm currently unable to find any misplaced string... I suspect the "fast builds" may cause the bug and the "full build" may fix it, and I probably checked right after a full build. I'll test this locally soon (full build in one lang followed by a fast build in another lang) to see if I can reproduice it. The build cycle is "build english then build french then build japanese", so having english on french is unnoticable, and you noticed french on japanese and japanese on english, so it looks to match with the build pattern. We may temporarily deactivate fast builds it needed (if it's long to fix) I'll know more after my local tests. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 26 04:59:09 2017 From: report at bugs.python.org (fabrice) Date: Tue, 26 Sep 2017 08:59:09 +0000 Subject: [docs] [issue31589] Links for French documentation pdf is broken Message-ID: <1506416349.22.0.925737411431.issue31589@psf.upfronthosting.co.za> New submission from fabrice: Hi, In this page : https://docs.python.org/fr/2/download.html, all the documentation links aren't available, for example : - https://docs.python.org/fr/2/archives/python-2.7.14-docs-pdf-a4.zip - https://docs.python.org/fr/2/archives/python-2.7.14-docs-pdf-a4.tar.bz2 So, I can't read the documentation in French :) Regards, Fabrice ---------- assignee: docs at python components: Documentation messages: 303024 nosy: docs at python, fabrice priority: normal severity: normal status: open title: Links for French documentation pdf is broken versions: Python 2.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 26 05:18:47 2017 From: report at bugs.python.org (STINNER Victor) Date: Tue, 26 Sep 2017 09:18:47 +0000 Subject: [docs] [issue31589] Links for French documentation pdf is broken In-Reply-To: <1506416349.22.0.925737411431.issue31589@psf.upfronthosting.co.za> Message-ID: <1506417527.54.0.0509640550734.issue31589@psf.upfronthosting.co.za> Changes by STINNER Victor : ---------- nosy: +mdk _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Tue Sep 26 05:58:20 2017 From: report at bugs.python.org (Julien Palard) Date: Tue, 26 Sep 2017 09:58:20 +0000 Subject: [docs] [issue31589] Links for French documentation pdf is broken In-Reply-To: <1506416349.22.0.925737411431.issue31589@psf.upfronthosting.co.za> Message-ID: <1506419900.34.0.27834587471.issue31589@psf.upfronthosting.co.za> Julien Palard added the comment: Hi Fabrice, Thanks for reporting. The whole archives/ directory is completly missing for french and japanese, I'll take a look. Bug is probably really near https://github.com/python/docsbuild-scripts/blob/master/build_docs.py#L222 ---------- _______________________________________ Python tracker _______________________________________ From antoine.yreux at ficud.org Mon Sep 25 07:42:01 2017 From: antoine.yreux at ficud.org (Antoine YREUX) Date: Mon, 25 Sep 2017 11:42:01 +0000 Subject: [docs] Bug on Download Section Message-ID: Dear Madam or Sir, I would like to report you that the documentation aren?t available for download, they don?t exist on the server. Could you re-upload them / make them available again please? Thank you in advance for your comprehension. Sincerely, Antoine YREUX. -------------- next part -------------- An HTML attachment was scrubbed... URL: From antoine.yreux at ficud.org Mon Sep 25 07:45:25 2017 From: antoine.yreux at ficud.org (Antoine YREUX) Date: Mon, 25 Sep 2017 11:45:25 +0000 Subject: [docs] Bug on Download Section In-Reply-To: References: Message-ID: Sorry, never mind, you were uploading it so now, I could download it :) Sincerely, Antoine YREUX. Le 25 septembre 2017 ? 13:42:01, Antoine YREUX (antoine.yreux at ficud.org) a ?crit: Dear Madam or Sir, I would like to report you that the documentation aren?t available for download, they don?t exist on the server. Could you re-upload them / make them available again please? Thank you in advance for your comprehension. Sincerely, Antoine YREUX. -------------- next part -------------- An HTML attachment was scrubbed... URL: From report at bugs.python.org Wed Sep 27 11:09:07 2017 From: report at bugs.python.org (Julien Palard) Date: Wed, 27 Sep 2017 15:09:07 +0000 Subject: [docs] [issue31584] Documentation Language mixed up In-Reply-To: <1506402847.94.0.987670636111.issue31584@psf.upfronthosting.co.za> Message-ID: <1506524947.63.0.154975027568.issue31584@psf.upfronthosting.co.za> Julien Palard added the comment: Local builds were not able to reproduce the bug for the moment and I did not spotted the bug on production neither. If anyone see it please write down the URL, the misplaced translation, and the date, time, timezone on which the string was found, so I can inspect the server logs. Did the strings were all over the page, or only a few strings on a normally rendered page? ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 27 13:23:32 2017 From: report at bugs.python.org (asl) Date: Wed, 27 Sep 2017 17:23:32 +0000 Subject: [docs] [issue31584] Documentation Language mixed up In-Reply-To: <1506402847.94.0.987670636111.issue31584@psf.upfronthosting.co.za> Message-ID: <1506533012.1.0.154975027568.issue31584@psf.upfronthosting.co.za> asl added the comment: Attached is a screenshot of https://docs.python.org/2.7/faq/design.html generated by web-capture.net shortly before this report was created. It shows the whole content was in Japanese. On the screenshot, it says it was last updated on Sep 26, 2017. It was one of the numerous sources I used to verify that it wasn't just my end which was seeing the language mix up. Unfortunately, that is the only actual screenshot that I have available that was created when it happened. The browser cache for the English page is also gone but I do have the cache of the Japanese page which was in French. https://docs.python.org/ja/2.7/faq/design.html ``` HTTP/1.1 200 status: 304 date: Wed, 27 Sep 2017 16:54:12 GMT via: 1.1 varnish age: 130544 x-served-by: cache-sin18020-SIN x-cache: HIT x-cache-hits: 2 x-timer: S1506531252.204533,VS0,VE0 server: nginx content-type: text/html last-modified: Tue, 26 Sep 2017 03:00:31 GMT etag: "59c9c2cf-146c2" x-clacks-overhead: GNU Terry Pratchett accept-ranges: bytes content-length: 83650 ``` ---------- Added file: https://bugs.python.org/file47172/shot-20170926-28526-p58mc1.jpeg _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 27 13:23:46 2017 From: report at bugs.python.org (asl) Date: Wed, 27 Sep 2017 17:23:46 +0000 Subject: [docs] [issue31584] Documentation Language mixed up In-Reply-To: <1506402847.94.0.987670636111.issue31584@psf.upfronthosting.co.za> Message-ID: <1506533026.7.0.154975027568.issue31584@psf.upfronthosting.co.za> asl added the comment: html dump ---------- Added file: https://bugs.python.org/file47173/??????? FAQ ? Python 2.7.14 ??????.html _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 27 15:26:05 2017 From: report at bugs.python.org (Julien Palard) Date: Wed, 27 Sep 2017 19:26:05 +0000 Subject: [docs] [issue31584] Documentation Language mixed up In-Reply-To: <1506402847.94.0.987670636111.issue31584@psf.upfronthosting.co.za> Message-ID: <1506540365.67.0.154975027568.issue31584@psf.upfronthosting.co.za> Julien Palard added the comment: Thanks for those details. Until we find japanese on a french page, or french on an english page, which would clearly disproove the hypothesis of a build picking up translated files from a previous build, I still consider this hypothesis the good one. I'm also seeing pages like genindex-?.html on the english directory tree, which is less surprising : the english build may just not remove them. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 27 15:38:24 2017 From: report at bugs.python.org (Julien Palard) Date: Wed, 27 Sep 2017 19:38:24 +0000 Subject: [docs] [issue31584] Documentation Language mixed up In-Reply-To: <1506402847.94.0.987670636111.issue31584@psf.upfronthosting.co.za> Message-ID: <1506541104.46.0.154975027568.issue31584@psf.upfronthosting.co.za> Julien Palard added the comment: Found another hypothesis: As the builds take a long time, builds may overlap (starting a build while another is still unfinished, typically rsync-ing its files), but this would result in: - japanese being build while french being rsynced - french being build while english being rsynced - english being build while japanese being rsynced This mean japanese on french pages, french on english pages, and english on japanese pages, which is the other way around, nobody spotted any of this overlaps, so I discard this hypothesis. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 27 15:48:18 2017 From: report at bugs.python.org (Zachary Ware) Date: Wed, 27 Sep 2017 19:48:18 +0000 Subject: [docs] [issue31584] Documentation Language mixed up In-Reply-To: <1506402847.94.0.987670636111.issue31584@psf.upfronthosting.co.za> Message-ID: <1506541698.14.0.154975027568.issue31584@psf.upfronthosting.co.za> Zachary Ware added the comment: Sounds like we really ought to be building each translation in its own directory so they can't possibly stomp on each other. ---------- nosy: +zach.ware _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 27 15:54:50 2017 From: report at bugs.python.org (Julien Palard) Date: Wed, 27 Sep 2017 19:54:50 +0000 Subject: [docs] [issue31584] Documentation Language mixed up In-Reply-To: <1506402847.94.0.987670636111.issue31584@psf.upfronthosting.co.za> Message-ID: <1506542090.72.0.154975027568.issue31584@psf.upfronthosting.co.za> Julien Palard added the comment: I'd prefer to understand exacly what is going wrong and fix it, but I agree it would fix the issue and even fix the other hypothesis, so I don't exclude doing it, even if I find the root cause. I'm currently doing a full build locally (I previously tried building using the Doc/Makefile, was unable to reproduce the bug, I'm now building using the build_docs.py script) it will take like an hour on my laptop, I'll see. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Wed Sep 27 18:33:08 2017 From: report at bugs.python.org (Julien Palard) Date: Wed, 27 Sep 2017 22:33:08 +0000 Subject: [docs] [issue31584] Documentation Language mixed up In-Reply-To: <1506402847.94.0.987670636111.issue31584@psf.upfronthosting.co.za> Message-ID: <1506551588.16.0.273299129313.issue31584@psf.upfronthosting.co.za> Julien Palard added the comment: I'm still unable to reproduce the bug. I'm now monitoring the docs.python.org hierarchy whith a: grep -rl 'd?finition' /srv/docs.python.org/ja/; grep -rl ? /srv/docs.python.org/{2.7,3.6,3.7} So if it happen again we'll maybe learn more, according to this simple grep the bug is not on production at this time on any page. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 28 14:26:18 2017 From: report at bugs.python.org (Kevin) Date: Thu, 28 Sep 2017 18:26:18 +0000 Subject: [docs] [issue31621] Pluralization typo in Language Reference section 7.12 Message-ID: <1506623173.91.0.466225441844.issue31621@psf.upfronthosting.co.za> New submission from Kevin : The documentation for the `global` statement contains the line: > CPython implementation detail: The current implementation does not enforce some of these restriction [...] "restriction" should be "restrictions" since there is more than one of them. Attached is a copy of `simple_stmts.rst` with the proposed one-letter change. ---------- assignee: docs at python components: Documentation files: simple_stmts_pluralized.rst messages: 303266 nosy: docs at python, kms70847 priority: normal severity: normal status: open title: Pluralization typo in Language Reference section 7.12 versions: Python 3.6, Python 3.7 Added file: https://bugs.python.org/file47175/simple_stmts_pluralized.rst _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 28 14:30:53 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Thu, 28 Sep 2017 18:30:53 +0000 Subject: [docs] [issue31621] Pluralization typo in Language Reference section 7.12 In-Reply-To: <1506623173.91.0.466225441844.issue31621@psf.upfronthosting.co.za> Message-ID: <1506623453.39.0.466225441844.issue31621@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Thanks Kevin. Can you open a pull request with this change? ---------- nosy: +Mariatta stage: -> needs patch _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 28 14:34:21 2017 From: report at bugs.python.org (Kevin) Date: Thu, 28 Sep 2017 18:34:21 +0000 Subject: [docs] [issue31621] Pluralization typo in Language Reference section 7.12 In-Reply-To: <1506623173.91.0.466225441844.issue31621@psf.upfronthosting.co.za> Message-ID: <1506623661.78.0.466225441844.issue31621@psf.upfronthosting.co.za> Kevin added the comment: Yes, I intend to make a PR shortly. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 28 15:38:58 2017 From: report at bugs.python.org (Kevin) Date: Thu, 28 Sep 2017 19:38:58 +0000 Subject: [docs] [issue31621] Pluralization typo in Language Reference section 7.12 In-Reply-To: <1506623173.91.0.466225441844.issue31621@psf.upfronthosting.co.za> Message-ID: <1506627538.26.0.206098698613.issue31621@psf.upfronthosting.co.za> Change by Kevin : ---------- keywords: +patch pull_requests: +3793 stage: needs patch -> patch review _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 28 15:43:32 2017 From: report at bugs.python.org (Kevin) Date: Thu, 28 Sep 2017 19:43:32 +0000 Subject: [docs] [issue31621] Pluralization typo in Language Reference section 7.12 In-Reply-To: <1506623173.91.0.466225441844.issue31621@psf.upfronthosting.co.za> Message-ID: <1506627812.73.0.466225441844.issue31621@psf.upfronthosting.co.za> Kevin added the comment: Ok, I've created a pull request, available at https://github.com/python/cpython/pull/3809. ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 28 15:56:33 2017 From: report at bugs.python.org (Roundup Robot) Date: Thu, 28 Sep 2017 19:56:33 +0000 Subject: [docs] [issue31621] Pluralization typo in Language Reference section 7.12 In-Reply-To: <1506623173.91.0.466225441844.issue31621@psf.upfronthosting.co.za> Message-ID: <1506628593.93.0.206098698613.issue31621@psf.upfronthosting.co.za> Change by Roundup Robot : ---------- pull_requests: +3795 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 28 16:00:19 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Thu, 28 Sep 2017 20:00:19 +0000 Subject: [docs] [issue31621] Pluralization typo in Language Reference section 7.12 In-Reply-To: <1506623173.91.0.466225441844.issue31621@psf.upfronthosting.co.za> Message-ID: <1506628819.09.0.466225441844.issue31621@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: New changeset 641494ec3168bd556f0af226196e13ae29bddd53 by Mariatta (Miss Islington (bot)) in branch '3.6': bpo-31621: Fix typo in Simple Statements documentation (GH-3809) (GH-3810) https://github.com/python/cpython/commit/641494ec3168bd556f0af226196e13ae29bddd53 ---------- _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Thu Sep 28 16:00:50 2017 From: report at bugs.python.org (Mariatta Wijaya) Date: Thu, 28 Sep 2017 20:00:50 +0000 Subject: [docs] [issue31621] Pluralization typo in Language Reference section 7.12 In-Reply-To: <1506623173.91.0.466225441844.issue31621@psf.upfronthosting.co.za> Message-ID: <1506628850.93.0.466225441844.issue31621@psf.upfronthosting.co.za> Mariatta Wijaya added the comment: Thanks! ---------- resolution: -> fixed stage: patch review -> resolved status: open -> closed _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 29 12:22:01 2017 From: report at bugs.python.org (=?utf-8?q?=C3=89ric_Araujo?=) Date: Fri, 29 Sep 2017 16:22:01 +0000 Subject: [docs] [issue31582] Add _pth breadcrumb to sys.path documentation In-Reply-To: <1506401240.1.0.91731713201.issue31582@psf.upfronthosting.co.za> Message-ID: <1506702121.07.0.912454111764.issue31582@psf.upfronthosting.co.za> Change by ?ric Araujo : ---------- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 29 12:54:03 2017 From: report at bugs.python.org (Charles Merriam) Date: Fri, 29 Sep 2017 16:54:03 +0000 Subject: [docs] [issue31640] Document exit() from parse_args Message-ID: <1506704042.9.0.213398074469.issue31640@psf.upfronthosting.co.za> New submission from Charles Merriam : It is unexpected to testers and users to ArgParse that it terminates the process; one usually expects an error code. Fix by modifying documentation to section 16.4.4 The parse_args() Method. Change the words "Return the populated namespace." to "Return the populated namespace, or exit with a status 0 if the help message is printed, or exit with status 2 if an invalid argument was parsed." ---------- assignee: docs at python components: Documentation messages: 303341 nosy: CharlesMerriam, docs at python priority: normal severity: normal status: open title: Document exit() from parse_args type: enhancement versions: Python 3.5, Python 3.6, Python 3.7, Python 3.8 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 29 13:23:01 2017 From: report at bugs.python.org (R. David Murray) Date: Fri, 29 Sep 2017 17:23:01 +0000 Subject: [docs] [issue31640] Document exit() from parse_args In-Reply-To: <1506704042.9.0.213398074469.issue31640@psf.upfronthosting.co.za> Message-ID: <1506705781.94.0.213398074469.issue31640@psf.upfronthosting.co.za> R. David Murray added the comment: I think this is reasonable, but do note that this is covered in 16.4.4.2, and the fact that help exits is actually a property of help, not parse_args. That is, the docs are correct and complete as they stand, but I agree that it would be helpful to have the summary include this information as well. ---------- nosy: +r.david.murray versions: +Python 2.7 -Python 3.5, Python 3.6 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Fri Sep 29 17:19:25 2017 From: report at bugs.python.org (Steve Dower) Date: Fri, 29 Sep 2017 21:19:25 +0000 Subject: [docs] [issue31582] Add _pth breadcrumb to sys.path documentation In-Reply-To: <1506401240.1.0.91731713201.issue31582@psf.upfronthosting.co.za> Message-ID: <1506719965.32.0.213398074469.issue31582@psf.upfronthosting.co.za> Steve Dower added the comment: Sounds like a good idea. I hope that sys.path initialization is documented as well for POSIX as it is for Windows, as that will make this a simple "for X, click here; for Y, click here" patch. Otherwise, someone will need to figure out exactly what rules are followed so they can be documented. (Hey Eric - when we get that Python initialization script, we can have one set of rules for inferring sys.path on all platforms in easy-to-read Python code :) ) ---------- nosy: +eric.snow stage: -> needs patch versions: +Python 3.6, Python 3.7 _______________________________________ Python tracker _______________________________________ From report at bugs.python.org Sat Sep 30 17:12:38 2017 From: report at bugs.python.org (Zachary Ware) Date: Sat, 30 Sep 2017 21:12:38 +0000 Subject: [docs] [issue20464] Update distutils sample config file in Doc/install/index.rst In-Reply-To: <1391201711.97.0.184979826347.issue20464@psf.upfronthosting.co.za> Message-ID: <1506805958.79.0.912454111764.issue20464@psf.upfronthosting.co.za> Change by Zachary Ware : ---------- versions: +Python 3.7 -Python 3.4, Python 3.5 _______________________________________ Python tracker _______________________________________ From alain.schlosser at delphi.com Thu Sep 28 12:28:02 2017 From: alain.schlosser at delphi.com (Schlosser, Alain) Date: Thu, 28 Sep 2017 16:28:02 +0000 Subject: [docs] PYTHON Documentation Download links on https://docs.python.org/fr/3/download.html are BROKEN :( :( :( Message-ID: <6dd2a6d551cc48d4999dd0b16d86f719@DM1PR6801MB0045.017d.mgd.msft.net> Hi Guys I would like to download the PYTHON documentation in PDF Format (A4 paper size) to learn this language but the link (highlighted below) and surely all others are not functioning on the French Web Page, and perhaps on others languages. https://docs.python.org/fr/3/download.html Extract from the web page: Download Python 3.6.3rc1 Documentation Last updated on: sept. 26, 2017. To download an archive containing all the documents for this version of Python in one of various formats, follow one of links in this table. The numbers in the table are the size of the download files in megabytes. Format Packed as .zip Packed as .tar.bz2 PDF (US-Letter paper size) Download (ca. 13 MB) Download (ca. 13 MB) PDF (A4 paper size) Download (ca. 13 MB) Download (ca. 13 MB) HTML Download (ca. 9 MB) Download (ca. 6 MB) Plain Text Download (ca. 3 MB) Download (ca. 2 MB) EPUB Download (ca. 5.5 MB) These archives contain all the content in the documentation. HTML Help (.chm) files are made available in the "Windows" section on the Python download page. The Chrome PAGE RESULT IS : [cid:image003.jpg at 01D33887.827718E0] Thanks in advance for your HELP. Alain Schlosser. **************************************************************************************** Note: If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify us immediately by replying to the message and deleting it from your computer. Thank you. **************************************************************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image003.jpg Type: image/jpeg Size: 15763 bytes Desc: image003.jpg URL: From leobobsix at outlook.com Fri Sep 29 01:57:33 2017 From: leobobsix at outlook.com (=?gb2312?B?wfUgsqk=?=) Date: Fri, 29 Sep 2017 05:57:33 +0000 Subject: [docs] why this version of the DOCS such a blur Message-ID: ??? Windows 10 ????? -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: TIM??20170929135643.png Type: image/png Size: 52335 bytes Desc: TIM??20170929135643.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: TIM??20170929135706.png Type: image/png Size: 152750 bytes Desc: TIM??20170929135706.png URL: