È arrivata la busta! Maremma le feste! Spedita il 20 è arrivata oggi…

È arrivata la busta! Maremma le feste! Spedita il 20 è arrivata oggi…

(Update: Official Guide Local Repositories)
Setting up a local macports repository is quite easy:
- create a repo folder, like:
- update the config
adding
- create your port mirroring the model in
- update the index with:
- install the new port!
Giorni fa ho trovato il mio primo bug in un codice sorgente “serio”!
Playing with PyInstaller I have found that the final part of _elementtree.c:
);
- PyRun_String(bootstrap, Py_file_input, g, NULL);
+ if (PyRun_String(bootstrap, Py_file_input, g, NULL) == NULL) {
+ m = PyErr_Occurred();
+ return;
+ }
elementpath_obj = PyDict_GetItemString(g, "ElementPath");
execute a bit of python code without checking the return value.
That can lead to weird things playing with import hooks,
for example an assert like this can fail: