simonzack
simonzack
Python has some problems pickling wrappers in general, described [here](http://bugs.python.org/issue14577). Below is a test case: ``` >>> from wrapt import ObjectProxy >>> import pickle >>> pickle.dumps(ObjectProxy(1)) Traceback (most recent call...
The following raises `TypeError: expected an object with a writable buffer interface`: ``` ctypes.c_char.from_buffer(wrapt.ObjectProxy(bytearray(b'12345'))) ``` This is a corner case I've encountered in my own proxy implementation which also doesn't...
This PR improves commandline option parsing by matching more option types, so commands like the following (created by yaourt) works: ``` sudo pacmatic --color auto -U /tmp/yaourt-tmp-linux/PKGDEST.tVK/test-x86_64.pkg.tar.xz ``` I've also...
Could there be better command line checking for `-Q` arguments, etc. which don't involve package installs? I've aliased pacman to pacmatic, and the following will print `No new files to...
If I select all the text, and hit backspace, undo (control-Z) won't work. This doesn't happen with the delete key, however. Tested on firefox 32 windows 7.
The key `py/object` is unlikely but it's still possible and may introduce security holes at places, I think it best to have some sort of escaping. ``` >>> jsonpickle.encode({'py/object': 2})...
Can you consider allowing multiple wikis to be served? I have some projects hosted locally, and each needs a separate wiki. It's rather tedious to start a new instance for...
Hi, I came here from doing Project Euler in C++. I was googling for a library for doing `product()` and found this one, but it only allows a template argument....
Add/remove is done by calling the constructor, which retains the caches so builds remain fast. I took this approach, since from my reading of the code, `reset()` needs to be...
Allow empty emails when parsing the commit message. Empty emails can be set by `git config user.email `.