Daniel Grunwald

Results 42 issues of Daniel Grunwald

[SD-1800](http://bugtracker.sharpdevelop.net/issue/ViewIssue.aspx?id=1800), originally created on 12/20/2010 01:58:10 by David Pierson We should have the ability to create the NTFS Extra Data field (0x000a) via an option in FastZip, and an easy...

enhancement
zip

[SD-122](http://bugtracker.sharpdevelop.net/issue/ViewIssue.aspx?id=122), originally created on 5/24/2004 10:18:54 by John Reilly Encryption as of v0.84 has been partially refactored and needs completing. Also further refactoring is required to allow compact framework to...

enhancement
encryption

[SD-1880](http://bugtracker.sharpdevelop.net/issue/ViewIssue.aspx?id=1880), originally created on 1/27/2012 05:55:20 by David Pierson Several posters have reported issues when calling Flush Close and Dispose on the stream they get from GetInputStream. Worth remarking for...

bug

A user using some_tool might need to change its configuration some day. They write: ``` [some_tool] show = all ``` which results in the error message: ``` $ python3 -c...

type: feature
type: task

We had a cc_test using a bunch of files (`data = glob(["data/**"]),`), some which were in subdirectories where the directory name had unicode characters (e.g. `data/test_öΩ/`). This resulted in an...

team-Rules-CPP
awaiting-user-response

The HeightTree is the data structure that maps between document line numbers and visual Y positions. It handles both the varying heights of lines (e.g. due to word-wrapping) and the...

In our application we open files in Python code, pass the file handle/descriptor to C++ code, and then use `FileStream` to access the file from C++. It's also possible for...

feature

In modern C++, it's quite normal to use `std::move` on strings to avoid unnecessary copies. It's possible that a developer accidentally calls `move` on a Python string object *before* conversion...

enhancement
Error Reporting

The primary use-case (how I ended up starting this project) was trying to annotate ILSpy's decompiler engine, which quickly felt like a task that could be automated. Timeline: * March...

Even on .NET Core 3.1, not all system libraries are annotated. For example, the `System.Linq` methods are lacking annotations. This means a call like `collection.FirstOrDefault()` will: * incorrectly allow nullable...