Staging
v0.5.1
https://github.com/python/cpython
Revision 6aae5c3082063c35eadc7548c9373dbdc62df201 authored by Moshe Zadka on 31 March 2001, 14:58:20 UTC, committed by Moshe Zadka on 31 March 2001, 14:58:20 UTC
                        an invalid 401 request is being handled.
- urllib.py - provide simple recovery/escape from apparent redirect recursion
- #129288 - urllib.py - chanign %02x to %02X in quoting
- urllib.py - HTTPS now works with string URLs
1 parent 9b80782
Raw File
Tip revision: 6aae5c3082063c35eadc7548c9373dbdc62df201 authored by Moshe Zadka on 31 March 2001, 14:58:20 UTC
- #227562 - urllib.py - call URLopener.http_error_default when
Tip revision: 6aae5c3
ccpython.cc
/* Minimal main program -- everything is loaded from the library */

#include "Python.h"

extern "C"
DL_EXPORT(int) Py_Main( int argc, char *argv[] );

int main( int argc, char *argv[] )
{
	return Py_Main(argc, argv);
}
back to top