Hello. This mailing list is to work on developing Python (adding new features to Python itself and fixing bugs); if you're having problems learning, understanding or using Python, please find another forum. Probably python-list/comp.lang.python mailing list/news group is the best place; there are Python developers who participate in it; you may get a faster, and probably more complete, answer there. See https://www.python.org/community/ for other lists/news groups/fora. Thank you for understanding.
On Sat, Oct 26, 2019 at 03:29:03PM +0300, Alex Yursha <alexyur...@gmail.com> wrote: > Hi CPython maintainers, > > I need to test my CORS setup and looking for a possibility to set a > custom *Access-Control-Allow-Origin > *header in http.server. As of now, there is no such feature. Are you > interested in me writing a patch to contribute a feature of setting custom > headers directly to `http.server`? You can override method ``send_headers`` of the class ``HTTPRequestHandler`` and add your own headers. See an example at https://docs.aws.amazon.com/polly/latest/dg/example-Python-server-code.html > Best, > - Alex Oleg. -- Oleg Broytman https://phdru.name/ p...@phdru.name Programmers don't die, they just GOSUB without RETURN. _______________________________________________ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@python.org https://mail.python.org/mailman3/lists/python-dev.python.org/ Message archived at https://mail.python.org/archives/list/python-dev@python.org/message/SSJL2BEQNII23ZGMLAXWYJYKTK35H6TO/ Code of Conduct: http://python.org/psf/codeofconduct/