Justin Israel
Justin Israel
I just hit this problem and had to track it down to a bit to find it coming from this library while I run my binary in a completely empty...
I was actually hoping for this same feature :-)
@thorfour , thanks for pointing that out! I wish I had known about that, and that it was documented. Also, there hasn't been a new tag since 2014, so my...
I'm guessing this problem was introduced via the fix for #56. It was meant to support extensions with multiple dot components. But it would seem it is not properly ignoring...
I've pushed a [65_long_ext_parsing](https://github.com/sqlboy/fileseq/compare/65_long_ext_parsing) branch with a fix for this problem. However I am a bit torn on some resulting behaviour: Given input: file.v2.tar.gz Currently the output will be: basename:...
Yea. I thought it would be good to try and preserve things like that, considering the use case. The problem is that if I don't capture it, where do I...
Well I was also thinking of rewriting fileseq to be a binding of libfileseq (c++) so that I don't have to maintain the 3 individual language ports that I currently...
Unfortunately the set-like features that were added to `FrameSet` are acting more like python sets than a `FrameSet`. Obviously a `FrameSet` maintains order, while a `set` does not. And the...
@yawpitch, thanks for that information. While I can appreciate the intention to conform the set-like features of `FrameSet` to set theory, I have to point out that via the #19...
> I'm not entirely clear on why you want to take an intersection of a FrameSet with itself to begin with I interpreted that as being just a simple example...