AREPL-vscode
AREPL-vscode copied to clipboard
Program python in real-time
**Describe the bug** Fails on install **To Reproduce** Steps to reproduce the behavior: 1. install ext in wsl ubuntu 2. click on cat when you have a python file open...
Calendar
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll...
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll...
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll...
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll...
**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd...
Take this sample code from https://docs.python.org/3/library/unittest.html ```python import unittest class TestStringMethods(unittest.TestCase): def test_upper(self): self.assertEqual('foo'.upper(), 'FOO') def test_isupper(self): self.assertTrue('FOO'.isupper()) self.assertFalse('Foo'.isupper()) def test_split(self): s = 'hello world' self.assertEqual(s.split(), ['hello', 'world']) # check...
```python import numpy as np arr = np.array([str(i) for i in range(3)], dtype=np.object) dtype = arr.dtype shape = arr.shape buf = arr.tobytes() del arr arr = np.ndarray(buffer=buf, dtype=dtype, shape=shape).copy() ```...