
… is there any? This does not give an error: from libtbx.phil import parse working_phil = parse(""" parameter { toy = 10 .type = int } """) if __name__ == '__main__': working_phil.show() # this should crash right? working_phil = working_phil.fetch(parse('parameter.toy=foo')) working_phil.show() Output: cctbx.python toy_phil.py parameter { toy = 10 } parameter { toy = foo } Thanks, Graeme -- This e-mail and any attachments may contain confidential, copyright and or privileged material, and are for the use of the intended addressee only. If you are not the intended addressee or an authorised recipient of the addressee please notify us of receipt by returning the e-mail and do not use, copy, retain, distribute or disclose the information in or attached to the e-mail. Any opinions expressed within this e-mail are those of the individual and not necessarily of Diamond Light Source Ltd. Diamond Light Source Ltd. cannot guarantee that this e-mail or any attachments are free from viruses and we cannot accept liability for any damage which you may sustain as a result of software viruses which may be transmitted in or with the message. Diamond Light Source Limited (company no. 4375679). Registered in England and Wales with its registered office at Diamond House, Harwell Science and Innovation Campus, Didcot, Oxfordshire, OX11 0DE, United Kingdom

On Wed, Apr 11, 2012 at 6:48 AM,
… is there any?
Only when you call scope.extract():
working_phil = working_phil.fetch(parse('parameter.toy=foo')) working_phil.show()
params = working_phil.extract() Traceback (most recent call last): File "tst.py", line 17, in <module> params = working_phil.extract() File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 1677, in extract value = object.extract(parent=result) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 1677, in extract value = object.extract(parent=result) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 1073, in extract return self._type_from_words()(self.words, master=self) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 314, in from_words value = self._value_from_words(words=words, path=master.full_path()) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 332, in _value_from_words return int_from_words(words=words, path=path) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 262, in int_from_words result = number_from_words(words=words, path=path) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 221, in number_from_words value_string=str_from_words(words), words=words, path=path) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 217, in number_from_value_string path, value_string, format_exception(), words[0].where_str())) RuntimeError: Error interpreting parameter.toy="foo" as a numeric expression: NameError: name 'foo' is not defined (input line 1) -Nat

Thanks Nat, that hit the spot. Cheerio, Graeme On 11 Apr 2012, at 14:51, Nat Echols wrote:
On Wed, Apr 11, 2012 at 6:48 AM,
wrote: … is there any?
Only when you call scope.extract():
working_phil = working_phil.fetch(parse('parameter.toy=foo')) working_phil.show()
params = working_phil.extract()
Traceback (most recent call last): File "tst.py", line 17, in <module> params = working_phil.extract() File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 1677, in extract value = object.extract(parent=result) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 1677, in extract value = object.extract(parent=result) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 1073, in extract return self._type_from_words()(self.words, master=self) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 314, in from_words value = self._value_from_words(words=words, path=master.full_path()) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 332, in _value_from_words return int_from_words(words=words, path=path) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 262, in int_from_words result = number_from_words(words=words, path=path) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 221, in number_from_words value_string=str_from_words(words), words=words, path=path) File "/Users/nat/phenix/src/cctbx_project/libtbx/phil/__init__.py", line 217, in number_from_value_string path, value_string, format_exception(), words[0].where_str())) RuntimeError: Error interpreting parameter.toy="foo" as a numeric expression: NameError: name 'foo' is not defined (input line 1)
-Nat _______________________________________________ cctbxbb mailing list [email protected] http://phenix-online.org/mailman/listinfo/cctbxbb
-- This e-mail and any attachments may contain confidential, copyright and or privileged material, and are for the use of the intended addressee only. If you are not the intended addressee or an authorised recipient of the addressee please notify us of receipt by returning the e-mail and do not use, copy, retain, distribute or disclose the information in or attached to the e-mail. Any opinions expressed within this e-mail are those of the individual and not necessarily of Diamond Light Source Ltd. Diamond Light Source Ltd. cannot guarantee that this e-mail or any attachments are free from viruses and we cannot accept liability for any damage which you may sustain as a result of software viruses which may be transmitted in or with the message. Diamond Light Source Limited (company no. 4375679). Registered in England and Wales with its registered office at Diamond House, Harwell Science and Innovation Campus, Didcot, Oxfordshire, OX11 0DE, United Kingdom

Hi Graeme,
If you add
working_phil.extract()
you'll get:
Error interpreting parameter.toy="foo" as a numeric expression: NameError:
name 'foo' is not defined (input line 1)
We also have this:
proxy = working_phil.get("parameter.toy").objects[0].validate("0")
print proxy.error_message
print proxy.extracted
Ralf
On Wed, Apr 11, 2012 at 6:48 AM,
… is there any?
This does not give an error:
from libtbx.phil import parse
working_phil = parse(""" parameter { toy = 10 .type = int } """)
if __name__ == '__main__': working_phil.show()
# this should crash right? working_phil = working_phil.fetch(parse('parameter.toy=foo'))
working_phil.show()
Output:
cctbx.python toy_phil.py parameter { toy = 10 } parameter { toy = foo }
Thanks,
Graeme -- This e-mail and any attachments may contain confidential, copyright and or privileged material, and are for the use of the intended addressee only. If you are not the intended addressee or an authorised recipient of the addressee please notify us of receipt by returning the e-mail and do not use, copy, retain, distribute or disclose the information in or attached to the e-mail. Any opinions expressed within this e-mail are those of the individual and not necessarily of Diamond Light Source Ltd. Diamond Light Source Ltd. cannot guarantee that this e-mail or any attachments are free from viruses and we cannot accept liability for any damage which you may sustain as a result of software viruses which may be transmitted in or with the message. Diamond Light Source Limited (company no. 4375679). Registered in England and Wales with its registered office at Diamond House, Harwell Science and Innovation Campus, Didcot, Oxfordshire, OX11 0DE, United Kingdom
_______________________________________________ cctbxbb mailing list [email protected] http://phenix-online.org/mailman/listinfo/cctbxbb
participants (3)
-
Graeme.Winter@Diamond.ac.uk
-
Nat Echols
-
Ralf Grosse-Kunstleve