-
```
Escape analysis would be great to allow allocation objects on the stack
rather than on the heap.
http://groups.google.com/group/shedskin-discuss/browse_thread/thread/adc334d1194
0b121#
```
Origi…
-
```
Is it possible to escape/sanitize code, similar to Rails? Example:
,
or
or probably just a double percentage?
I feel this is pretty important feature to have.
```
Original issue reported on c…
-
2.3.3 :066 > /\**/ =~ "asterrix**"
=> 0
2.3.3 :067 > /\?/ =~ "who?"
=> 3
2.3.3 :068 > /\+/ =~ "a+b"
=> 1
2.3.3 :069 > /a\+b/ =~ "a+b"
=> 0
2.3.3 :070 > $~
=> #
2.3.3 :071 >
-
I was reading _Locale::Po4a::Man_(3pm) today and happened across the following language.
> To summarise this section, keep simple, and don’t try to be clever
> while authoring your man pages.
E…
-
```
This results in xml-files that looks ugly like this:
...
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
...
The only characters that has to be escaped are: , ", '
Also ' sh…
-
```
This results in xml-files that looks ugly like this:
...
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
...
The only characters that has to be escaped are: , ", '
Also ' sh…
-
```
This results in xml-files that looks ugly like this:
...
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
...
The only characters that has to be escaped are: , ", '
Also ' sh…
-
Consider the following program:
```
package pkg
import (
"iter"
)
func trivialIterator() iter.Seq[int] {
return func(yield func(int) bool) {
yield(0)
}
}
func consumer() {
fo…
-
Here's a real life example taken from astropy
```python
# t.py
import re
KEYWORD_LENGTH = 8
re.compile(r"^[A-Z0-9_-]{0,%d}$" % KEYWORD_LENGTH)
```
This code isn't flagged for rule UP031 und…
-
### Describe the bug
Full screen sometimes fails to activate after a tiddler was closed while full screen
### Expected behavior
_No response_
### To Reproduce
1. Create a new tiddler and save it …