implement build-in id() function (example included)

Open
#723 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
2/5
Estimated time
1-3 hours
Newbie friendliness
52/100
Issue type
Feature
Clarity
Clearly specified
Activity status
Stale
Tech stack
javascript, python
Domain
compilers

Research direction

Start in builtin.js and compare the requested implementation with how other Python built-ins are exposed by Transcrypt. Verify the resulting built-in assigns stable identifiers to objects and behaves like Python's id() for supported inputs; the issue does not name a test file, so inspect the existing built-in test coverage before adding or running relevant checks.

Written by the indexing model from the issue text.

Description

STATE: under consideration

Python function id() is very useful and it is trivial to implement using WeakMap, all you need to is is adding to __builtin__.js this code:

var _id_registry = new WeakMap();
var _id_counter = 0;

export function id(obj) {
    var id = _id_registry.get(obj);
    if (id === undefined) {
        id = ++_id_counter;
        _id_registry.set(obj, id);
    }
    return id;
}
Dominant language
Python
Stars
2.9k
Forks
218
PR merge metrics
No merged PRs in 30d

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from TranscryptOrg/Transcrypt

All issues in TranscryptOrg/Transcrypt

Similar issues

More Python issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.