GithubHelp home page GithubHelp logo

Comments (3)

JdeH avatar JdeH commented on July 25, 2024

Thanks, will be fixed in the next version.

from transcrypt.

JdeH avatar JdeH commented on July 25, 2024

Sorry to get back on this.
It was left out because the del function in general was not yet implemented.
Since there are other ways to achieve the same, for now I prefer to leave it out in the ever lasting search for the balance between compactness and completeness.
This is clearly a borderline case though.
It may make it as an enhancement in a later version, not sure yet.

from transcrypt.

erelsgl avatar erelsgl commented on July 25, 2024

I ran into the same issue:

    a = [1,2,3,4]
    del a[0]
    print(a)

It prints [None, 2, 3, 4] instead of [2, 3, 4].

If I own the code, I can solve it by replacing "del" with "pop" everywhere. However, if I use code from a third party, it may be very hard to go through all this code and replace "del" with "pop". Also, this bug causes a lot of confusion, since code that works perfectly on the server side, suddenly crashes or makes hard-to-find bugs in the client side.

from transcrypt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.