My favorites | Sign in
Logo
                
Details: Show all Hide all

Today

  • 8 hours ago
    r1073 (use 'lambda' wrappers for builtin references ) committed by mark.dufour   -   use 'lambda' wrappers for builtin references
    use 'lambda' wrappers for builtin references
  • 10 hours ago
    r1072 (allow passing of builtin funcs (doesn't work yet) ) committed by mark.dufour   -   allow passing of builtin funcs (doesn't work yet)
    allow passing of builtin funcs (doesn't work yet)

Last 7 days

  • Dec 15, 2009
    r1071 (merge some similar code ) committed by mark.dufour   -   merge some similar code
    merge some similar code
  • Dec 15, 2009
    r1070 (remove partial arg (un)packing stuff ) committed by mark.dufour   -   remove partial arg (un)packing stuff
    remove partial arg (un)packing stuff
  • Dec 15, 2009
    r1069 (remove 'too smart' optimization ) committed by mark.dufour   -   remove 'too smart' optimization
    remove 'too smart' optimization
  • Dec 14, 2009
    issue 48 (inheritance from extension class should either work or give ...) Status changed by mark.dufour   -  
    Status: Fixed
    Status: Fixed
  • Dec 14, 2009
    r1068 (forgot to model some args, so they became void * ) committed by mark.dufour   -   forgot to model some args, so they became void *
    forgot to model some args, so they became void *
  • Dec 14, 2009
    r1067 (test property getter too ) committed by mark.dufour   -   test property getter too
    test property getter too
  • Dec 14, 2009
    r1066 (most of csv.{DictReader, DictWriter} ) committed by mark.dufour   -   most of csv.{DictReader, DictWriter}
    most of csv.{DictReader, DictWriter}
  • Dec 13, 2009
    r1065 (move test .csv file to testdata/ ) committed by mark.dufour   -   move test .csv file to testdata/
    move test .csv file to testdata/
  • Dec 13, 2009
    r1064 (bump this one ) committed by mark.dufour   -   bump this one
    bump this one
  • Dec 13, 2009
    r1063 (next are csv.dictreader/writer ) committed by mark.dufour   -   next are csv.dictreader/writer
    next are csv.dictreader/writer
  • Dec 13, 2009
    r1062 (fix potential problem with seeding ) committed by mark.dufour   -   fix potential problem with seeding
    fix potential problem with seeding
  • Dec 13, 2009
    r1061 (remove some more trailing whitespace ) committed by mark.dufour   -   remove some more trailing whitespace
    remove some more trailing whitespace
  • Dec 13, 2009
    r1060 (izip_longest warning ) committed by mark.dufour   -   izip_longest warning
    izip_longest warning
  • Dec 13, 2009
    r1059 (syntax to specify keywords in builtins ) committed by mark.dufour   -   syntax to specify keywords in builtins
    syntax to specify keywords in builtins
  • Dec 12, 2009
    r1058 (allow **kwargs for builtins ) committed by mark.dufour   -   allow **kwargs for builtins
    allow **kwargs for builtins
  • Dec 12, 2009
    r1057 (fix warning here too ) committed by mark.dufour   -   fix warning here too
    fix warning here too
  • Dec 12, 2009
    r1056 (csv.writer (dogfood) ) committed by mark.dufour   -   csv.writer (dogfood)
    csv.writer (dogfood)
  • Dec 12, 2009
    r1055 (improve forward variable references ) committed by mark.dufour   -   improve forward variable references
    improve forward variable references
  • Dec 12, 2009
    r1054 (factor out forward referencing stuff ) committed by mark.dufour   -   factor out forward referencing stuff
    factor out forward referencing stuff
  • Dec 12, 2009
    r1053 (fix seeding of func refs ) committed by mark.dufour   -   fix seeding of func refs
    fix seeding of func refs
  • Dec 12, 2009
    r1052 (improve forward function references ) committed by mark.dufour   -   improve forward function references
    improve forward function references
  • Dec 12, 2009
    issue 48 (inheritance from extension class should either work or give ...) Status changed by mark.dufour   -  
    Status: Started
    Status: Started
  • Dec 12, 2009
    issue 48 (inheritance from extension class should either work or give ...) commented on by mark.dufour   -   thanks for reporting! as mentioned in the tutorial, inheritance from builtins is normally not supported. I personally also much prefer delegation over inheritance in most cases, but I digress.. :) I improved the check for inheritance from builtins in SVN: http://code.google.com/p/shedskin/source/detail?r=1051 thanks again, and please let me know if you encounter anything else.
    thanks for reporting! as mentioned in the tutorial, inheritance from builtins is normally not supported. I personally also much prefer delegation over inheritance in most cases, but I digress.. :) I improved the check for inheritance from builtins in SVN: http://code.google.com/p/shedskin/source/detail?r=1051 thanks again, and please let me know if you encounter anything else.
  • Dec 12, 2009
    r1051 (improve check for inheritance from builtins ) committed by mark.dufour   -   improve check for inheritance from builtins
    improve check for inheritance from builtins
  • Dec 11, 2009
    issue 48 (inheritance from extension class should either work or give ...) reported by chi...@isi.edu   -   What steps will reproduce the problem? 1. shedskin test.py 2. 3. What is the expected output? What do you see instead? expected: successful compilation or an error telling me I can't do this instead: Traceback (most recent call last): File "/lfs1/chiang/pkg/shedskin-0.2/ss.py", line 433, in <module> main() File "/lfs1/chiang/pkg/shedskin-0.2/ss.py", line 430, in main annotate() File "/lfs1/chiang/pkg/shedskin-0.2/ss.py", line 216, in annotate paste(callfunc.node, typesetreprnew(callfunc, inode(callfunc).parent, False)) File "/lfs1/chiang/pkg/shedskin-0.2/ss.py", line 163, in paste line = source[expr.lineno-1][:-1] IndexError: list index out of range What version of the product are you using? On what operating system? 0.2 Linux Please provide any additional information below.
    What steps will reproduce the problem? 1. shedskin test.py 2. 3. What is the expected output? What do you see instead? expected: successful compilation or an error telling me I can't do this instead: Traceback (most recent call last): File "/lfs1/chiang/pkg/shedskin-0.2/ss.py", line 433, in <module> main() File "/lfs1/chiang/pkg/shedskin-0.2/ss.py", line 430, in main annotate() File "/lfs1/chiang/pkg/shedskin-0.2/ss.py", line 216, in annotate paste(callfunc.node, typesetreprnew(callfunc, inode(callfunc).parent, False)) File "/lfs1/chiang/pkg/shedskin-0.2/ss.py", line 163, in paste line = source[expr.lineno-1][:-1] IndexError: list index out of range What version of the product are you using? On what operating system? 0.2 Linux Please provide any additional information below.
  • Dec 11, 2009
    r1050 (3/2, and cleanup a bit ) committed by mark.dufour   -   3/2, and cleanup a bit
    3/2, and cleanup a bit
  • Dec 11, 2009
    r1049 (update 2/2 ) committed by mark.dufour   -   update 2/2
    update 2/2
  • Dec 11, 2009
    r1048 (update csv implementation 1/2 ) committed by mark.dufour   -   update csv implementation 1/2
    update csv implementation 1/2
  • Dec 11, 2009
    r1047 (avoid GCC warnings for shedskin -e ) committed by mark.dufour   -   avoid GCC warnings for shedskin -e
    avoid GCC warnings for shedskin -e
  • Dec 11, 2009
    r1046 (remove trailing whitespace from shedskin/ also ) committed by mark.dufour   -   remove trailing whitespace from shedskin/ also
    remove trailing whitespace from shedskin/ also
  • Dec 11, 2009
    r1045 (split visitCallFunc ) committed by mark.dufour   -   split visitCallFunc
    split visitCallFunc
  • Dec 11, 2009
    r1044 (improve local overloading and function passing ) committed by mark.dufour   -   improve local overloading and function passing
    improve local overloading and function passing
  • Dec 11, 2009
    r1043 (distinguish NULL and 0 for selected builtins ) committed by mark.dufour   -   distinguish NULL and 0 for selected builtins
    distinguish NULL and 0 for selected builtins
  • Dec 11, 2009
    r1042 (remove trailing whitespace ) committed by mark.dufour   -   remove trailing whitespace
    remove trailing whitespace

Last 30 days

  • Dec 10, 2009
    r1041 (this is not needed ) committed by mark.dufour   -   this is not needed
    this is not needed
  • Dec 10, 2009
    r1040 (basic example now works fully ) committed by mark.dufour   -   basic example now works fully
    basic example now works fully
  • Dec 10, 2009
    r1039 (lamdas first ) committed by mark.dufour   -   lamdas first
    lamdas first
  • Dec 10, 2009
    r1038 (fix return type here, always int ) committed by mark.dufour   -   fix return type here, always int
    fix return type here, always int
  • Dec 10, 2009
    r1037 (almost ) committed by mark.dufour   -   almost
    almost
  • Dec 10, 2009
    r1036 (do something ) committed by mark.dufour   -   do something
    do something
  • Dec 10, 2009
    r1035 (some more basics ) committed by mark.dufour   -   some more basics
    some more basics
  • Dec 10, 2009
    r1034 (duh ) committed by mark.dufour   -   duh
    duh
  • Dec 10, 2009
    r1033 (enough for basic example ) committed by mark.dufour   -   enough for basic example
    enough for basic example
  • Dec 09, 2009
    r1032 (reduce now builtin ) committed by mark.dufour   -   reduce now builtin
    reduce now builtin
  • Dec 09, 2009
    r1031 (branches are very useful ) committed by mark.dufour   -   branches are very useful
    branches are very useful
  • Dec 09, 2009
    r1030 (here too ) committed by mark.dufour   -   here too
    here too
  • Dec 09, 2009
    r1029 (forget that, too many problems ) committed by mark.dufour   -   forget that, too many problems
    forget that, too many problems
  • Dec 09, 2009
    r1028 (satisfy new __init__ argument ) committed by mark.dufour   -   satisfy new __init__ argument
    satisfy new __init__ argument
 
Hosted by Google Code