sdh4
sdh4
### Description ### src/css/finalPropName.js defines a variable: ``` var cssPrefixes = [ "Webkit", "Moz", "ms" ], emptyStyle = document.createElement( "div" ).style, vendorProps = {}; ``` that is used to do...
Calling printf() in a POCL kernel with an integer format causes valgrind to trigger on use of uninitialized values. Specifically: ``` ==2370925== Thread 6: ==2370925== Conditional jump or move depends...
I am seeing (pocl-1.5-3 from Fedora 32 running on the CPU;llvm-10.0.1-4; clang-10.0.1-3 ) illegal instruction errors running kernels that have calls to printf() inside a function. In other circumstances I...
Attempting to create files with characters such as colon (:) not permitted by the remote filesystem fails with a freeze in thunar/nautilus and an eventual confusing message: "libmtp error. Could...
I am trying to use this as a link to COMSOL. Unfortunately there are some methods ('set', most notably) with multiple overloaded methods that have the same number of parameters,...
Per https://github.com/PyCQA/redbaron/issues/149 accelerate inserting multiple lines at one time by only calling _synchronize() once. This patch adds a new method for inserting multiple lines in one steip, dramatically accelerating the...
Fix indentation when inserting multiple indented lines, per https://github.com/PyCQA/redbaron/issues/151 It is clear from stepping through the code in this scenario that the intent of the original author was to refer...
Inserting a large block into a ProxyList can be very slow because of the _synchronize() method called after each insertion. Propose an insert_multiple() method that allows multiple insertions at the...
When inserting an if...else block from one code block into another code block, the else block in the generated code can be misindented. Test case: ``` from redbaron import RedBaron...
RedBaron generates incorrect indentation when inserting multiple lines from indented code blocks into unindented code blocks, where there are blank lines present in the lines being inserted. Here is a...