This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace System.Dynamic | |
{ | |
using System; | |
using System.Collections.Generic; | |
using System.Reflection; | |
using System.Reflection.Emit; | |
public class DynamicTypeBuilder | |
{ | |
private AssemblyBuilder assemblyBuilder; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys, os | |
if hasattr(sys, "isapidllhandle"): | |
import win32traceutil | |
sys.path.insert(0,'') | |
path=os.path.dirname(os.path.abspath('D:\\web2py\\gluon')) | |
if not path in sys.path: sys.path.append(path) | |
os.chdir(path) |
NewerOlder