Add forward referencing of symbol imports, similar to existing module forward references to break import recursion with "from X import Y" style references

Yes, under PEP 690 lazy imports, after from X import Y the symbol Y is lazy and the import of X does not actually occur until Y is later referenced.