This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: "503 HTTP ERROR" on attempt to access some points of python library documentation
Type: Stage: resolved
Components: Documentation Versions:
process
Status: closed Resolution: out of date
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Alexander Kamyanskiy, Mariatta, brett.cannon, docs@python, louielu
Priority: normal Keywords:

Created on 2017-07-11 07:23 by Alexander Kamyanskiy, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (4)
msg298139 - (view) Author: Alexander Kamyanskiy (Alexander Kamyanskiy) Date: 2017-07-11 07:23
I found that some points in Python Library reference documentation are not accessible, I got 503 http error.

The problem starts from this link and some points below the 29.14 point of doc list:

https://docs.python.org/3/library/fpectl.html

Also now I got 503:
https://docs.python.org/3/library/custominterp.html
https://docs.python.org/3/library/zipimport.html
https://docs.python.org/3/library/pkgutil.html
https://docs.python.org/3/library/symbol.html
https://docs.python.org/3/library/token.html
...


In fact I can't say for example that "31. Importing Modules" all inaccessible - I can't access 
31.3. modulefinder — Find modules used by a script
31.4. runpy — Locating and executing Python modules
31.5. importlib — The implementation of import

but cannot (I got 503 http response):
31.1. zipimport — Import modules from Zip archives
31.2. pkgutil — Package extension utility

P.S. I've tried to access documentation from absolutely another place and I'm sure it's not my local settings in browser or local firewall or smth like this.
msg298140 - (view) Author: Louie Lu (louielu) * Date: 2017-07-11 07:28
Can reproduce this problem in Chromium 59.0.3071, it seems affect every selectable version in docs.python.org. Also, devguide has some page down, too.

* devguide: https://docs.python.org/devguide/triaging.html
msg298163 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2017-07-11 16:03
Those pages all work for me. May have been transient.
msg298164 - (view) Author: Mariatta (Mariatta) * (Python committer) Date: 2017-07-11 16:17
There was partial outage. See post mortem report:
https://status.python.org/incidents/cc622spyl26l
History
Date User Action Args
2022-04-11 14:58:48adminsetgithub: 75084
2017-07-11 16:17:25Mariattasetnosy: + Mariatta
messages: + msg298164
2017-07-11 16:03:16brett.cannonsetstatus: open -> closed

nosy: + brett.cannon
messages: + msg298163

resolution: out of date
stage: resolved
2017-07-11 07:28:28louielusettype: resource usage ->

messages: + msg298140
nosy: + louielu
2017-07-11 07:23:15Alexander Kamyanskiycreate