Skip to content

GitLab

  • Menu
Projects Groups Snippets
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • K KDevelop Python Support
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 2
    • Issues 2
    • List
    • Boards
    • Service Desk
    • Milestones
  • Bugzilla
    • Bugzilla
  • Merge requests 3
    • Merge requests 3
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Releases
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • KDevelop
  • KDevelop Python Support
  • Merge requests
  • !4

Closed
Created Sep 19, 2020 by Sven Brauch@brauchDeveloper
  • Report abuse
Report abuse

Fix ExtSlice crash

  • Overview 2
  • Commits 2
  • Changes 10

In an expression like A[1:3,5], the dims of the slice are "1:3" and "5". These are, against our assumptions, not Expressions, they are Slices: "1:3" is not an Expression (it is not valid outside a slice).

So, we cannot represent this kind of slice with a tuple, it needs a separate AST node kind.

BUG:426292

Assignee
Assign to
Reviewer
Request review from
Time tracking
Source branch: fix-slice-crash