this repo has no description

Fix maybe uninitialized variable warning

```
../runtime/float-builtins.cpp: In function ‘py::RawObject py::floatFromDigits(py::Thread*, const char*, word)’:
../runtime/float-builtins.cpp:119:14: error: ‘new_str’ may be used uninitialized in this function [-Werror=maybe-uninitialized]
119 | delete[] new_str;
| ^~~~~~~
cc1plus: all warnings being treated as errors
```

+1 -1
+1 -1
runtime/float-builtins.cpp
··· 85 85 RawObject floatFromDigits(Thread* thread, const char* str, word length) { 86 86 // TODO(T57022841): follow full CPython conversion for strings 87 87 char* end; 88 - char* new_str; 88 + char* new_str = nullptr; 89 89 const char* dup = str; 90 90 word dup_length = length; 91 91 bool release_memory = false;