Skip to content

Commit 7524b89

Browse files
heikkitoivonencodex
andcommitted
Fix: Remove range copy() and correct warn() cost
Update agent list to include Codex Co-Authored-By: Codex <codex@openai.com>
1 parent fb6696a commit 7524b89

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

docs/builtins/range.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ The `range` type is an immutable sequence of numbers used for iteration. It gene
1515
| `index(value)` | O(1) | Solve equation |
1616
| `count(value)` | O(1) | Single check |
1717
| `iteration` | O(n) | n = number of items |
18-
| `copy()` | O(1) | Shallow copy |
1918
| `reversed()` | O(1) | Iterator, not materialized |
2019
| `list(range(...))` | O(n) | Convert to list |
2120

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ See [Built-in Types](builtins/list.md) for detailed analysis.
4949

5050
## Why Trust This Documentation?
5151

52-
This documentation has been reviewed and refined through **100+ commits** by multiple AI coding agents (Amp, Claude, Antigravity, Kiro, Copilot) working alongside human contributors. Each agent brings different perspectives and catches different issues, resulting in thorough cross-validation.
52+
This documentation has been reviewed and refined through **100+ commits** by multiple AI coding agents (Amp, Claude, Antigravity, Kiro, Copilot, Codex) working alongside human contributors. Each agent brings different perspectives and catches different issues, resulting in thorough cross-validation.
5353

5454
It's also **fully open source**—anyone can review the content, [file issues](https://github.com/heikkitoivonen/python-time-space-complexity/issues), or [submit improvements](https://github.com/heikkitoivonen/python-time-space-complexity/pulls). All sources are cited, and claims are based on official Python documentation and CPython source code.
5555

docs/stdlib/warnings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The `warnings` module provides a framework for issuing and filtering warning mes
1717
```python
1818
import warnings
1919

20-
# Issue a warning - O(1)
20+
# Issue a warning - O(n) for filter scan + stack inspection
2121
warnings.warn("This is deprecated", DeprecationWarning)
2222

2323
# With stack level

0 commit comments

Comments
 (0)