Νικόλαος-Διγενής Καραγιάννης
Νικόλαος-Διγενής Καραγιάννης
`is_string_or_bytes` checks for `str` instances which is correct only for python3 while in python2 the right type is `basestring`. Fixes #73 Bug demo in the build after adding tests.
Among the pypi packages with a purpose similar to `scrapy.utils.deprecate.create_deprecated_class`, scrapy's implementation stands out being the only one that warns when subclassing. I think it deserves its own package where...
_This is a bit of a [WIP] issue because there are more details to be added when I have the time_ environ.py has the code responsible for deleting logfiles. ```...
This allows securing the app from users on the same system, provided that the effective group id of scrapyd's process is properly chosen.
There are 2 binary eggs in master, containing pyc files. Besides making reviewing harder (need to decompile) I'd expect them to bug us when testing in different pythons (the old...
Scheduled jobs are not run in FIFO+priority order. Instead, there are multiple queues that are also arranged in a queue-like fashion but not round-robin or anything, just an "arbitrary but...
Users should be able to delete jobs_to_keep and disable the cleanup of old logs and items. This is backwards incompatible because it has a default hardcoded in environ.py so there...
Since twisted-15.2.0, the recommended logging system for twisted changed. This will bump the twisted dependency many versions forward.
(TODO: doc) This was once (scrapy
When the logger is misused and throws and exception the `--pdb` flag doesn't make it drop into a pdb shell. E.g. if I put this in the init of some...