mw66
mw66
The last release is: https://pypi.org/project/parsimonious/ parsimonious 0.8.1 Released: Jun 20, 2018 That's ~4 years ago, can we make a new release? Thanks.
Hi, I just tried this modified example from the readme: ``` from parsimonious.grammar import Grammar grammar = Grammar( """ bold_text = bold_open text bold_close text = ~"[A-Z0-9_]+"i # remove the...
looks like WRN need too much GPU memory, I tried image size of 224x224, and even with depth 10 (1x6 + 4), it run out of GPU memory. I wonder...
the current version of emsi_containers is 0.9.0, can we relax the dependency specification to be more general (to even higher version of emsi_containers in future update)?
pyd/util/multi_index.d(190,18): Deprecation: `pyd.util.multi_index.MNode!(MultiIndexContainer!(DStruct_Py_Mapping, IndexedBy!(__T6HashedVbi1VAy aa3_612e64VQna35_636173742873697a655f7429202a6361737428636f6e737420766f69642a2a29202661VQDma4_613d3d62Z, "d", __T6HashedVbi0VAyaa4_612e7079VQpa35_636173742873697a655f7429202a6361737428636f6e73742076 6f69642a2a29202661VQDoa4_613d3d62Z, "python"), MallocAllocator, MutableView), IndexedBy!(__T6HashedVbi1VAyaa3_612e64VQna35_636173742873697a655f7429202a6361737428636f6e737420766f69642a2a29202661VQDma 4_613d3d62Z, "d", __T6HashedVbi0VAyaa4_612e7079VQpa35_636173742873697a655f7429202a6361737428636f6e737420766f69642a2a29202661VQDoa4_613d3d62Z, "python"), MallocAllocator, Inner!(IndexedBy!(__T6Hashed Vbi1VAyaa3_612e64VQna35_636173742873697a655f7429202a6361737428636f6e737420766f69642a2a29202661VQDma4_613d3d62Z, "d", __T6HashedVbi0VAyaa4_612e7079VQpa35_636173742873697a655f7429202a6361737428636f6e7 37420766f69642a2a29202661VQDoa4_613d3d62Z, "python")), DStruct_Py_Mapping, DStruct_Py_Mapping).MNode.NodeMixin!0LU.insertNext`: `in` contract may throw but...
According to the doc: ``` Numpy arrays implement the [buffer protocol](https://docs.python.org/3/c-api/buffer.html), which PyD can efficiently convert to D arrays. To convert a D array to a numpy array, use pyd.extra.d_to_python_numpy_ndarray....
Q: any performance comparison between D call pyd function and native D function? Any first hand experience? Thanks.
Hi, I have a Python variable which default to None, and I need to pass it back to D side as null (basically I'm calling a D function, and want...
This is a bug report actually: ``` $ cat c.py c = complex(2,-1) h = c.__hash__(); print(c) print(h) # python output $ python c.py (2-1j) -2000004 # here! ``` however,...
Hi, I encountered a strange error, my Python program behaves differently between stand-alone run v.s called by D program via pyd, I noticed it could caused by the loading dynamical...