Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
opSimulation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Projects
Eclipse openpass
opSimulation
Merge requests
!226
Update pandas
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Update pandas
update-pandas
into
develop
Overview
1
Commits
2
Pipelines
1
Changes
4
Closed
Raghunandan Netrapalli Madhusudhan
requested to merge
update-pandas
into
develop
1 year ago
Overview
1
Commits
2
Pipelines
1
Changes
4
Expand
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
ae07f1b4
2 commits,
1 year ago
4 files
+
6
−
6
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
sim/tests/endToEndTests/pyOpenPASS/event_parser.py
+
1
−
1
Options
@@ -14,7 +14,7 @@ import re
@@ -14,7 +14,7 @@ import re
def
normalize_column
(
column
,
event
):
def
normalize_column
(
column
,
event
):
# already prefixed
# already prefixed
normalized_column
=
f
'
{
event
}
_
'
+
re
.
sub
(
f
'
^(
{
event
}
_?)
'
,
''
,
column
)
normalized_column
=
f
'
{
event
}
_
'
+
column
# special chars
# special chars
normalized_column
=
re
.
sub
(
r
'
[^a-zA-Z1-9_]
'
,
'
_
'
,
normalized_column
)
normalized_column
=
re
.
sub
(
r
'
[^a-zA-Z1-9_]
'
,
'
_
'
,
normalized_column
)
# duplicate _
# duplicate _
Loading