Staging
v0.5.1
https://github.com/python/cpython
Revision c52a36f657cea7ed38986d1fccd8199f84adf2d4 authored by Raymond Hettinger on 05 October 2002, 20:43:43 UTC, committed by Raymond Hettinger on 05 October 2002, 20:43:43 UTC
Call me anal, but there was a particular phrase that was speading to
comments everywhere that bugged me: /* Foo is inlined */ instead of
/* Inline Foo */.  Somehow the "is inlined" phrase always confused me
for half a second (thinking, "No it isn't" until I added the missing
"here").  The new phrase is hopefully unambiguous.

Close SF bug 563740. complex() now finds __complex__() in new style classes.
Made conversion failure error messages consistent between types.
Added related unittests.
1 parent ad565a3
Raw File
Tip revision: c52a36f657cea7ed38986d1fccd8199f84adf2d4 authored by Raymond Hettinger on 05 October 2002, 20:43:43 UTC
Backport 2.63 and 2.60:
Tip revision: c52a36f
dynload_stub.c

/* This module provides the necessary stubs for when dynamic loading is
   not present. */

#include "Python.h"
#include "importdl.h"


const struct filedescr _PyImport_DynLoadFiletab[] = {
	{0, 0}
};
back to top