Migrated python_utils calls to standard library equivalents
By RepoJournal , from @anurag629's public GitHub activity
Backfilled
Anurag Verma worked through part of issue #13956 in oppia/oppia, removing custom utility functions in favor of Python's built-in alternatives.
Two commits landed across two pull requests. The first merged PR [1] replaced all instances of python_utils.ZIP() with the built-in zip() function throughout the codebase. A second PR [3] swapped python_utils.url_unsplit for urllib.unsplit, continuing the same pattern of deprecating the custom utilities wrapper. Both changes were part of a larger migration effort [2] to reduce the project's dependency on its own utility layer.
One email a day. Unsubscribe in one click.
A short briefing every day anurag629 ships something — in about 3 minutes.
One email a day. Unsubscribe in one click. Read a past issue →
References
- [1] Fix part of #13956: Replaced python_utils.ZIP() with zip() (#14279) oppia/oppia
- [2] Fix part of #13956: Replaced python_utils.ZIP() with zip() ↗ oppia/oppia
- [3] Fix part of #13956: python_utils.url_unsplit->urllib.unsplit (#14338) oppia/oppia