Skip to content

fixed python3 specific bug involving ".."

Compare
Choose a tag to compare
@jewettaij jewettaij released this 05 Aug 19:38
· 428 commits to master since this release

fixed a python3-specific bug in ttree.py causing expressions containing ".." (like "@atom:../A") to sometimes cause an uncaught exception. Example:

MoleculeTypeA {
  write_once("In Settings") {
    @atom:../A
  }
}
MoleculeTypeB {
}

These kinds of expressions should work again now. (The A leaf node should be created in "/" now.)