-
Data going through the xmlrpclib are copied many times in Python. This creates problem when submitting blob of data in XML-RPC (I know the protocol is not aimed for that, but sometimes it's useful).
This little patch try to limit memory usage of xmlrpclib by adding a few optimizations.
I did the patch on Python 2.4 because it's what our customer is using, but it should work on Python 2.5...
2007-07-04 09:54:37 UTC in Python
-
Here is a patch to add methods to X509 objects, to get
the validity dates (as a YYMMDDHHMMSSZ string) and to
retrieve plain text/PEM version of them.
2005-01-28 09:36:06 UTC in pyOpenSSL
-
X509 serial numbers are bigger than C ints (or even C
long long). A Python long should be used to get/set
them, not a Python int. I wrote a patch for the
get_serial_number method, but not (yet) for the
set_serial method (I didn't need it, and since there is
no PyLong_ToString function in the Python/C API, it'll
be a bit more tricky).
2005-01-28 09:32:41 UTC in pyOpenSSL
-
This is a patch to add bindings for several operations
on PKCS7 objects (mostly, on packets of the "signed"
type). The diff was made against 0.6 version.
It was slightly tested, but with valgrind.
2005-01-28 09:27:57 UTC in pyOpenSSL
-
Logged In: YES
user_id=54326
This device ships with Linux, but there are many others
arm-linux devices (sharp zaurus for example). I tried to use
LINUPY for things which are specific to the Yopy (like the
scancode of special keys).
./configure --host=arm-linux will enable cross-compilation
to a generic arm-linux device, ./configure --host=linupy
will enable cross-compilation to...
2004-01-21 11:39:36 UTC in ScummVM
-
Logged In: YES
user_id=54326
Ok, I did again the patch against the CVS version, and
without the xyflip code... but I still cannot find the
environment variable to rotate the screen, could you give me
an hint ?.
2004-01-17 13:39:28 UTC in ScummVM
-
Logged In: YES
user_id=54326
I've a weird bug with the stylus too... I'll check that and
make a patch against the CVS version tomorrow.
2004-01-16 22:57:49 UTC in ScummVM
-
Here is a patch to add support for the Yopy Linux-based
PDA.
This patch contains three different parts:
- changes to the Makefile and configure script to allow
easy cross-compilation (./configure --target=linupy
--sdl-config=/opt/arm-linux/bin/sdl-config
--disable-mad; make is enough)
- change some key bindings if LINUPY is defined,
because Yopy has no "alt" key, but some nice...
2004-01-16 22:01:53 UTC in ScummVM
-
This patch allows to remember the option chosen in the
netenv menu, and use it as default on the next boot.
Default is remembered if NETENV_SAVEDEFAULT is set in
the configuration file for the selected item.
A global (in the netenv script) option adding a timeout
is present too.
This is very usefull when the laptop is moved from
location to location on relatively low frequency, and...
2003-10-20 19:38:01 UTC in Netenv - Linux Laptop Networkenvironment
-
The system call pthread_mutex_timedlock is not
implemented in valgrind 1.9.6 (Debian GNU/Linux
version), and it makes programs using it unusable with
valgrind (valgrind aborts). It would be wonderful if
you could add support for it (else, I'll try to do it)
2003-09-08 08:28:16 UTC in Valgrind, an open-source memory debugger