Google Code Exporter
Google Code Exporter
``` In WPF, nearly all methods being called from XAML have specific arguments: For instance, anything _Click has a parameter coming from RoutedEventArgs. If it were possible to filter based...
``` We need to make errors more visible and understandable in BEAST. XMLParseException should perhaps take a number of text fields such as 'description', 'details' and 'solutions' to try and...
``` What steps will reproduce the problem? 1. Find a standard multi-part episode that has been broken into separate pieces (but not numbered as such by thetvdb). There will be...
``` http://tvrename.com/bb/viewtopic.php?p=1786#p1786 For each series/season, define an "offset" to season and episode number for use when trying to find missing episodes. e.g. season,ep offset of "+1,-4" will pick up a...
``` Currently cpplint messages can be suppressed in the source code with NOLINT() definition. The definition affects only to the single line. In some cases it would be useful to...
``` Some methods that accept iterables end up spending a lot of time range-checking elements. This isn't really needed, as often the iterable is an xrange or range object, and...
``` Nice idea to allow the new pad token in find/replace. For example: s.find('0x000001b3, pad:14, 0b1') which would find the next hex code which is followed by 14 bits of...
``` I'm not sure if it will clobber the API, but I think it would be nice if read() would accept an additional argument to specify the length. When you...
``` I find myself needing to cut and join bitstrings in the opposite order to the default for cut and join. I propose the addition of rcut and rjoin in...
``` If you have a format string for packing or unpacking and use it a lot then it gets parsed every time it's used. This is clearly not very efficient....